Skip to main content

Update Trade Tracking Finances

PATCH /api/v1/trade-tracking-pipeline/finances

Description

Update the financial details of a trade tracking pipeline.

Path Parameters

NameTypeDescription
NoneNo parameters

Request Headers

NameTypeDescription
tenantIdstringThe tenant ID (header)
userIdstringThe user ID (header)
countryCodestringThe country code (header)

Request Body

  • Content Type: application/json
{
"trade": "string",
"processFlow": "string",
"amount": 0,
"proofOfPayment": "string",
"testResult": "string",
"status": true,
"dateTimeStamp": "2024-07-13T01:29:53.039Z",
"userId": "string",
"tenantId": "string",
"countryCode": "string"
}

Response Code: 200 - OK

Description

The financial details of the trade tracking pipeline have been successfully updated.

Headers

Content-TypeValue
apiKey{{apiKey}}
tenantIdstring
userIdstring
countryCodestring

Body

{
"trade": "TRADE123",
"processFlow": "FLOW456",
"amount": 1000,
"proofOfPayment": "proof123",
"testResult": "result123",
"status": true,
"dateTimeStamp": "2024-07-13T01:29:53.039Z",
"userId": "usr789",
"tenantId": "tenant101",
"countryCode": "US"
}

🔑 Authentication bearer

ParamValueType
token{{accessCode}} string

LANGUAGE

AUTHORIZATION

Bearer

CURL REQUEST


curl --request PATCH \ 
--url /api/v1/trade-tracking-pipeline/finances \
--header 'accept: application/json' \
--header 'content-type: application/json'

RESPONSE


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