Update Traded Process Flows
PATCH /api/v1/trades/{tradeId}/process-flows
Description
Update process flows for a specific trade.
Path Parameters
| Name | Type | Description |
|---|---|---|
tradeId | string | The ID of the trade (path) |
Request Body
- Content Type:
application/json
{
"pipelineProcessFlow": [
{
"id": "string",
"isRequired": true
}
]
}
Response Code: 200 - OK
Description
Process flows updated successfully.
Response Fields
The response does not contain any specific fields.
Headers
| Content-Type | Value |
|---|---|
| apiKey | {{apiKey}} |
Body
{
"pipelineProcessFlow": [
{
"id": "flow123",
"isRequired": true
}
]
}
🔑 Authentication bearer
| Param | Value | Type |
|---|---|---|
| token | {{accessCode}} | string |
LANGUAGE
CURL REQUEST
curl --request PATCH \
--url /api/v1/trades/{tradeId}/process-flows \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!