Skip to main content

Order Cancel Ep

POST 

/v1/order/cancel

Cancel Order

Marks the order as canceled in Crossroads and then sends the cancellation to the destination system.

Required Scopes (order:cancel)

Headers

HeaderTypeRequiredDescription
X-Tenant-NamestrNoName of the origin tenant making the request
X-Dest-Tenant-NamestrYesName of the destination tenant that will receive the drop data
X-Origin-System-Namestr | NoneNoName of the origin system. If not provided, uses the tenant's primary system

Request

order: OrderKey
Identifies the order to be canceled. At least one field is required.

Show Child Attributes

origin_order_number: str | None = None
Order number from the origin system.


destination_order_number: int | None = None
Order number in the destination system.


order_id: str | None = None
ID of the order.


reason_code: str | None = None
Optional reason code for the cancellation (max 30 characters).


Response

status: str
Crossroads integration status. Each status represents a step in the integration pipeline.

Integration Stages

origin_mapped
The order has been received by crossroads and needs mapping to crossroads master data.

master_mapped
The order has been mapped to crossroads master data and needs mapping to the destination system.

destination_mapped
The order has been mapped to the destination system and is ready to be sent.

synced
The order has been successfully sent to the destination system.

error
An error occurred during processing. Check the message and log for details.

rejected
The order was rejected by the destination system. Check the message and log for details.


message: str | None = None
Status message or error details.


log: CrossroadsLogV2 | None = None
Processing log entry.

Responses

Successful Response

{
"status": "origin_mapped",
"log": {
"_id": "5eb7cf5a86d9755df3a6c593",
"title": "string",
"date": "2026-01-16T21:26:18.510Z",
"status": "unknown",
"severity": "low",
"routing": {
"origin_tenant_id": "string",
"origin_tenant_name": "string",
"origin_source_system": "string",
"origin_source_system_id": "string",
"destination_tenant_id": "string",
"destination_tenant_name": "string",
"destination_source_system": "string",
"destination_source_system_id": "string"
},
"detail": {
"category": "crossroads",
"message": "Unhandled System Error. Please retry or contact support.",
"message_short": "System Error",
"traceback": "string"
},
"metadata": {
"type": "order",
"group_id": "string",
"origin_order_number": "string"
},
"worker_name": "Crossroads",
"correlation_id": "string",
"retried": false,
"group_id": "string"
},
"message": "string"
}
Loading...