# Update card order status Updates the status of a card order based on its cardOrderId. The status can be updated to one of the following: 1. CANCELLED 2. COMPLETED (deprecated) The behaviour for card order cancellation differs across card order statuses: - PLACED: Card order can be cancelled with no further action required. - REQUIREMENTS_FULFILLED, CARD_DETAILS_CREATED, PRODUCED: Card order can be cancelled, and its associated card will be blocked. However, the physical card may have already been produced and may be in delivery. If so, the card will still reach the end user's address. This should be communicated to the end user to prevent confusion. - COMPLETED, RETURNED: Card orders in these statuses cannot be cancelled. {% admonition type="info" %} Updating a card order status to COMPLETED is deprecated. Check with our team whether this is supported in your integration. {% /admonition %} Endpoint: PUT /v3/spend/profiles/{profileId}/card-orders/{cardOrderId}/status Security: UserToken ## Path parameters: - `profileId` (integer, required) The profile ID (personal or business). Example: 123456 - `cardOrderId` (integer, required) The card order ID. Example: 142 ## Request fields (application/json): - `status` (string, required) The intended new status of the card order: - CANCELLED - COMPLETED (deprecated) Enum: "CANCELLED", "COMPLETED" ## Response 202 fields