Delete Return
DELETEhttps://api.goodsdelivery.io/v1/returns/:id
Authorization: x-api-key
name: x-api-keytype: apiKeyscopes: brand
in: header
To cancel a scheduled return pick-up issue a DELETE request, where you use the ShortId
or ID
in the request as the ID of the return in order to match your request with an return delivery.
Request
Path Parameters
id stringrequired
ID of the return to delete
Responses
- 200
- 401
- 403
- 404
If the request is valid, a successful response will be provided.
- application/json
- Schema
- Example (from schema)
Schema
success booleanrequired
{
"success": true
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
message stringrequired
Human readable error message.
code stringrequired
Machine readable error message.
more url
More help on the error here.
{
"message": "string",
"code": "string",
"more": "string"
}
Can not delete
- application/json
- Schema
- Example (from schema)
Schema
message stringrequired
Human readable error message.
code stringrequired
Machine readable error message.
more url
More help on the error here.
{
"message": "string",
"code": "string",
"more": "string"
}
Return not found
- application/json
- Schema
- Example (from schema)
Schema
message stringrequired
Human readable error message.
code stringrequired
Machine readable error message.
more url
More help on the error here.
{
"message": "string",
"code": "string",
"more": "string"
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X DELETE 'https://api.goodsdelivery.io/v1/returns/:id' \
-H 'Accept: application/json' \
-H 'x-api-key: <API_KEY_VALUE>'
ResponseClear