Cancel Withdrawal

DELETE https://api.sfox.com/v1/transactions/:atx_id

Cancel a specified withdrawal. Cancelation is not guaranteed–if the withdrawal has already be processed and cannot be canceled, you will receive an error response.

Authentication: This endpoint requires a User Auth Token for authentication. Requests using your Connect API Key will be rejected.

Path Parameters

Name
Type
Description

atx_id required

int

The transaction ID of the withdrawal you are trying to cancel.

200 OK

No body for this response

curl -X DELETE \
-H "Authorization: Bearer ${USER_AUTH_TOKEN}" \
'https://api.sfox.com/v1/transactions/12345'

Last updated