- Post the shipping details of the buyer for a transaction
Get the supported carriers
Confirm delivery for this transaction
Get the shipping details of the buyer for a transaction
Set postal tracking details for a transaction
Post the shipping details...
Security
APIKey or OAuth2
POST
- APIKey
- OAuth2
curl -i -X POST \
-u '<API_KEY>:' \
'https://api.test.trustap.com/v2/transactions/{transaction_id}/shipping_details' \
-H 'Content-Type: application/json' \
-d '{
"address_line_1": "string",
"address_line_2": "string",
"city": "string",
"country": "string",
"name": "string",
"phone": "string",
"postal_code": "string",
"state": "string"
}'Response
{ "address": { "city": "string", "country": "string", "line1": "string", "line2": "string", "postal_code": "string", "state": "string" }, "name": "string", "phone": "string" }