Skip to main content

Get Trade Tracking Pipeline by pipelineId

GET /api/v1/trade-tracking-pipeline/{pipeline}

Description

Retrieve details of a trade tracking pipeline by pipelineId.

Path Parameters

NameTypeDescription
pipelineIdstringThe ID of the pipeline (path)

Request Headers

NameTypeDescription
tenantIdstringThe tenant ID (header)
userIdstringThe user ID (header)

Example

GET /api/v1/trade-tracking-pipeline/{pipelineId}
tenantId: string
userId: string

Response Code: 200 - OK

Description

Successful retrieval of the trade tracking pipeline details.

Response Fields

FieldTypeDescription
pipelineIdstringThe ID of the pipeline
namestringThe name of the pipeline
descriptionstringA description of the pipeline
statusstringThe status of the pipeline

Example

{
"pipelineId": "pipeline123",
"name": "Sample Pipeline",
"description": "This is a sample pipeline",
"status": "active"
}

Headers

Content-TypeValue
tenantIdstring
userIdstring

🔑 Authentication bearer

ParamValueType
token{{accessCode}} string

LANGUAGE

AUTHORIZATION

Bearer

CURL REQUEST


curl --request GET \ 
--url /api/v1/trade-tracking-pipeline/{pipeline} \
--header 'accept: application/json' \
--header 'content-type: application/json'

RESPONSE


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