Get Trades Process Flows
GET /api/v1/trades/process-flows
Description
Retrieve the list of trade process flows.
Query Parameters
| Name | Type | Description |
|---|---|---|
name | string | Filter 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-Type | Value |
|---|---|
| apiKey | {{apiKey}} |
🔑 Authentication bearer
| Param | Value | Type |
|---|---|---|
| token | {{accessCode}} | string |
LANGUAGE
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!