Update Return
PUThttps://api.goodsdelivery.io/v1/returns
Authorization: x-api-key
name: x-api-keytype: apiKeyscopes: brand
in: header
To update an existing return issue a PUT request. Your body should include a JSON object with the requested changes, where you use the ShortId
or ID
in the request as the ID of the return in order to match your request with an existing return.
Request
- application/json
Body
required
In the request you can provide values only for the properties that you want to update
ID of the job
pickUp object
dropOff object
consumer object
Defines if the costumer prefer contactless delivery
Possible values: [EXTRA_INSURANCE
, SIGNATURE_REQUIRED
, WITHOUT_LABEL
]
Add-ons for the delivery service
Possible values: [SAME_DAY
, NEXT_DAY
, SCHEDULED
]
Determine the delivery date, including pick-up and drop-off times.
Required if serviceType is SCHEDULED. Date in ISO 8601 format
Responses
- 200
- 401
- 403
- 404
If the request is valid, a successful response will be provided.
- application/json
- Schema
- Example (from schema)
Schema
{
"success": true
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
Human readable error message.
Machine readable error message.
More help on the error here.
{
"message": "string",
"code": "string",
"more": "string"
}
Can not update
- application/json
- Schema
- Example (from schema)
Schema
Human readable error message.
Machine readable error message.
More help on the error here.
{
"message": "string",
"code": "string",
"more": "string"
}
Return not found
- application/json
- Schema
- Example (from schema)
Schema
Human readable error message.
Machine readable error message.
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 PUT 'https://api.goodsdelivery.io/v1/returns' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'x-api-key: <API_KEY_VALUE>' \
--data-raw '{
"id": "string",
"pickUp": {
"name": "string",
"address1": "string",
"address2": "string",
"city": "string",
"zipCode": "string",
"state": "string",
"country": "string",
"note": "string"
},
"dropOff": {
"name": "string",
"address1": "string",
"address2": "string",
"city": "string",
"zipCode": "string",
"state": "string",
"country": "string",
"note": "string"
},
"consumer": {
"firstName": "string",
"lastName": "string",
"phone": "string",
"email": "user@example.com"
},
"contactlessPreferred": true,
"addons": [
"EXTRA_INSURANCE"
],
"serviceType": "SAME_DAY",
"scheduledDate": "2023-06-02"
}'