v1
latestOpenAPI 3.0.02026-07-26117342409.6 KBOrchestrations
Create Orchestration
Creates a one-time orchestration that moves assets from a source profile to a destination. Use this endpoint when funds already reside on the Paxos platform and need to be transferred or converted as part of a single workflow.
A request to create an orchestration can fail with one of the following types of errors:
- Insufficient Funds if the Profile (profile_id) has insufficient available balance to fund the execution.
- Already Exists if an orchestration with the same external ID (ref_id) has already been created.
post/orchestration/orchestrations
Request body
Example request
{
"ref_id": "orch-usdc-usdg-a3b1c2d4",
"identity_id": "b2c3d4e5-6f7a-8b9c-0d1e-f2a3b4c5d6e7",
"account_id": "c3d4e5f6-7a8b-9c0d-1e2f-a3b4c5d6e7f8",
"source_asset": "USDC",
"source_amount": "100",
"destination_asset": "USDG",
"source": {
"profile": {
"profile_id": "7c4e8f2a-1d3b-4a5e-9f6c-8b2d7e0a4f1c"
}
},
"destination": {
"crypto": {
"address_id": "d4e5f6a7-8b9c-0d1e-2f3a-b4c5d6e7f8a9"
}
},
"metadata": {
"my_id": "4f8a2b6c-9d1e-4c3a-b5f7-0e2d8a7c1b9f"
}
}Response
A successful response.
Example response
{
"id": "e5f6a7b8-9c0d-1e2f-3a4b-c5d6e7f8a9b0",
"profile_id": "7c4e8f2a-1d3b-4a5e-9f6c-8b2d7e0a4f1c",
"customer_id": "a1b2c3d4-5e6f-7a8b-9c0d-e1f2a3b4c5d6",
"ref_id": "orch-usdc-usdg-a3b1c2d4",
"source_asset": "USDC",
"destination_asset": "USDG",
"source_amount": "100",
"status": "PROCESSING",
"source": {
"profile": {
"profile_id": "7c4e8f2a-1d3b-4a5e-9f6c-8b2d7e0a4f1c"
}
},
"destination": {
"crypto": {
"address_id": "d4e5f6a7-8b9c-0d1e-2f3a-b4c5d6e7f8a9"
}
},
"created_at": "2026-04-20T12:30:01.397730Z",
"updated_at": "2026-04-20T12:30:01.397730Z",
"metadata": {
"my_id": "4f8a2b6c-9d1e-4c3a-b5f7-0e2d8a7c1b9f"
}
}