ReferenceCustomer
Update order customer
Update an order to a specific customer, authorise using basic auth
PUT
/v1/orders/{reference}/customer
AuthorizationBasic <token>
Basic Authorization header using the Bearer scheme.
In: header
Authorization<token>
JWT Authorization header using the Bearer scheme.
In: header
Path Parameters
referencestring
customerGuid?string | null
Response Body
curl -X PUT "https://loading/v1/orders/string/customer" \ -H "Content-Type: application/json" \ -d '{}'
{
"success": true,
"errors": [
{
"description": "string"
}
]
}
{
"message": "string",
"code": 0
}
{
"succeeded": true,
"errors": [
{
"message": "string"
}
]
}
How is this guide?