Skip to main content

Update Traded Process Flows

PATCH /api/v1/trades/{tradeId}/process-flows

Description

Update process flows for a specific trade.

Path Parameters

NameTypeDescription
tradeIdstringThe 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-TypeValue
apiKey{{apiKey}}

Body

{
"pipelineProcessFlow": [
{
"id": "flow123",
"isRequired": true
}
]
}

🔑 Authentication bearer

ParamValueType
token{{accessCode}}string

LANGUAGE

AUTHORIZATION

Bearer

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!