Skip to main content

Get Trades Process Flows

GET /api/v1/trades/process-flows

Description

Retrieve the list of trade process flows.

Query Parameters

NameTypeDescription
namestringFilter by name (query)

Example

GET /api/v1/trades/process-flows?name=example
Content-Type: application/json

###Response Code: 200 - OK Description

A list of trade process flows.

Response Fields

The response does not contain any specific fields.

Example

{
"status": true,
"statusCode": 0,
"message": "Trade process flows retrieved successfully",
"data": [
{
"id": "processFlow1",
"name": "Process Flow 1",
"description": "Description of Process Flow 1"
},
{
"id": "processFlow2",
"name": "Process Flow 2",
"description": "Description of Process Flow 2"
}
],
"errors": []
}

Headers

Content-TypeValue
apiKey{{apiKey}}

🔑 Authentication bearer

ParamValueType
token{{accessCode}}string

LANGUAGE

AUTHORIZATION

Bearer

CURL REQUEST


curl --request GET \ 
--url /api/v1/trades/process-flows \
--header 'accept: application/json' \
--header 'content-type: application/json'

RESPONSE


Click Try It! to start a request and see the response here!