Postman Collections For Amazon Shipping APIs

Importable Postman Collection file pre-packaged ready to call the Shipping APIs with example parameters and payloads. This is in JSON format, please copy and import as JSON format as-is to Postman.

Postman Collection Snapshot - EU & US

Postman Collection Snapshot - India

Postman Collection JSON - EU & US Marketplaces (US, UK, Italy, Spain, France)

{
	"info": {
		"_postman_id": "953497f6-4b88-4873-9267-1edd1d77a1e5",
		"name": "Amazon Shipping APIs",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
		"_exporter_id": "30249867"
	},
	"item": [
		{
			"name": "Label Purchase Via Get Rates and Purchase Shipment APIs",
			"item": [
				{
					"name": "1. Get Access Token",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"name": "Content-Type",
								"value": "application/x-www-form-urlencoded",
								"type": "text"
							}
						],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{
									"key": "grant_type",
									"value": "refresh_token",
									"type": "text"
								},
								{
									"key": "refresh_token",
									"value": "<<YourRefreshTokenHere>>",
									"type": "text"
								},
								{
									"key": "client_id",
									"value": "<<YourClientIdHere>>",
									"type": "text"
								},
								{
									"key": "client_secret",
									"value": "<<YourClientSecretHere>>",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{token-host}}/auth/o2/token",
							"host": [
								"{{token-host}}"
							],
							"path": [
								"auth",
								"o2",
								"token"
							]
						}
					},
					"response": []
				},
				{
					"name": "2. Get Shipping Rates - OFF-Amazon",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json",
								"type": "text"
							},
							{
								"key": "x-amz-access-token",
								"value": "{{x-amz-access-token}}",
								"type": "text"
							},
							{
								"key": "x-amzn-shipping-business-id",
								"value": "<<BusinessIdHere>>",
								"type": "text",
								"description": "Please Refer https://developer-docs.amazon.com/amazon-shipping/docs/shipping-api-v2-reference#x-amzn-shipping-business-id"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"shipTo\": {\n    \"name\": \"A3\",\n    \"addressLine1\": \"SWA Test Account\",\n    \"addressLine2\": \"SWA Test Account\",\n    \"addressLine3\": \"SWA Test Account\",\n    \"stateOrRegion\": \"\",\n    \"postalCode\": \"DN1 1QZ\",\n    \"city\": \"Doncaster\",\n    \"countryCode\": \"GB\",\n    \"email\": \"[email protected]\",\n    \"phoneNumber\": \"444-444-4444\"\n  },\n  \"shipFrom\": {\n    \"name\": \"A1\",\n    \"addressLine1\": \"4 Neal Street\",\n    \"stateOrRegion\": \"\",\n    \"postalCode\": \"WC2H 9QL\",\n    \"city\": \"London\",\n    \"countryCode\": \"GB\",\n    \"email\": \"[email protected]\",\n    \"phoneNumber\": \"444-444-4444\"\n  },\n  \"packages\": [\n    {\n      \"dimensions\": {\n        \"length\": 3.14,\n        \"width\": 3.14,\n        \"height\": 3.14,\n        \"unit\": \"INCH\"\n      },\n      \"weight\": {\n        \"unit\": \"KILOGRAM\",\n        \"value\": 3.14159\n      },\n      \"items\": [\n        {\n          \"quantity\": 1,\n          \"itemIdentifier\": \"V-02\",\n          \"description\": \"Sundries\",\n          \"isHazmat\": false,\n          \"weight\": {\n            \"unit\": \"KILOGRAM\",\n            \"value\": 1.14159\n          }\n        },\n        {\n          \"quantity\": 1,\n          \"itemIdentifier\": \"V-01\",\n          \"description\": \"Sundries\",\n          \"isHazmat\": false,\n          \"weight\": {\n            \"unit\": \"KILOGRAM\",\n            \"value\": 1.14159\n          }\n        }\n      ],\n      \"insuredValue\": {\n        \"unit\": \"GBP\",\n        \"value\": 29.98\n      },\n      \"packageClientReferenceId\": \"abcd\",\n      \"sellerDisplayName\": \"A TEST Seller\"\n    }\n  ],\n \"channelDetails\": {\n    \"channelType\": \"EXTERNAL\"\n  }\n}\n"
						},
						"url": {
							"raw": "{{api-host}}/shipping/v2/shipments/rates",
							"host": [
								"{{api-host}}"
							],
							"path": [
								"shipping",
								"v2",
								"shipments",
								"rates"
							]
						}
					},
					"response": []
				},
				{
					"name": "2. Get Shipping Rates - ON-Amazon",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json",
								"type": "text"
							},
							{
								"key": "x-amz-access-token",
								"value": "{{x-amz-access-token}}",
								"type": "text"
							},
							{
								"key": "x-amzn-shipping-business-id",
								"value": "<<BusinessIdHere>>",
								"type": "text",
								"description": "Please Refer https://developer-docs.amazon.com/amazon-shipping/docs/shipping-api-v2-reference#x-amzn-shipping-business-id"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"shipTo\": {\n    \"name\": \"A3\",\n    \"addressLine1\": \"SWA Test Account\",\n    \"addressLine2\": \"SWA Test Account\",\n    \"addressLine3\": \"SWA Test Account\",\n    \"stateOrRegion\": \"\",\n    \"postalCode\": \"DN1 1QZ\",\n    \"city\": \"Doncaster\",\n    \"countryCode\": \"GB\",\n    \"email\": \"[email protected]\",\n    \"phoneNumber\": \"444-444-4444\"\n  },\n  \"shipFrom\": {\n    \"name\": \"A1\",\n    \"addressLine1\": \"4 Neal Street\",\n    \"stateOrRegion\": \"\",\n    \"postalCode\": \"WC2H 9QL\",\n    \"city\": \"London\",\n    \"countryCode\": \"GB\",\n    \"email\": \"[email protected]\",\n    \"phoneNumber\": \"444-444-4444\"\n  },\n  \"packages\": [\n    {\n      \"dimensions\": {\n        \"length\": 3.14,\n        \"width\": 3.14,\n        \"height\": 3.14,\n        \"unit\": \"INCH\"\n      },\n      \"weight\": {\n        \"unit\": \"KILOGRAM\",\n        \"value\": 3.14159\n      },\n      \"items\": [\n        {\n          \"quantity\": 1,\n          \"itemIdentifier\": \"V-02\",\n          \"description\": \"Sundries\",\n          \"isHazmat\": false,\n          \"weight\": {\n            \"unit\": \"KILOGRAM\",\n            \"value\": 1.14159\n          }\n        },\n        {\n          \"quantity\": 1,\n          \"itemIdentifier\": \"V-01\",\n          \"description\": \"Sundries\",\n          \"isHazmat\": false,\n          \"weight\": {\n            \"unit\": \"KILOGRAM\",\n            \"value\": 1.14159\n          }\n        }\n      ],\n      \"insuredValue\": {\n        \"unit\": \"GBP\",\n        \"value\": 29.98\n      },\n      \"packageClientReferenceId\": \"abcd\"\n    }\n  ],\n \"channelDetails\": {\n    \"channelType\": \"AMAZON\",\n    \"amazonOrderDetails\": {\n      \"orderId\": \"113-3080243-4028244\"\n    }\n  }\n}\n"
						},
						"url": {
							"raw": "{{api-host}}/shipping/v2/shipments/rates",
							"host": [
								"{{api-host}}"
							],
							"path": [
								"shipping",
								"v2",
								"shipments",
								"rates"
							]
						}
					},
					"response": []
				},
				{
					"name": "3. Purchase Shipment",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"name": "Content-Type",
								"type": "text",
								"value": "application/json"
							},
							{
								"key": "x-amz-access-token",
								"type": "text",
								"value": "{{x-amz-access-token}}"
							},
							{
								"key": "x-amzn-shipping-business-id",
								"type": "text",
								"value": "<<BusinessIdHere>>",
								"description": "Please Refer https://developer-docs.amazon.com/amazon-shipping/docs/shipping-api-v2-reference#x-amzn-shipping-business-id"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"requestToken\": \"<<Request Token Value from getRates>>\",\n\t\"rateId\": \"<<rateID Value from getRates>>\",\n\t\"requestedDocumentSpecification\": {\n\t\t\"format\": \"PNG\",\n\t\t\"size\": {\n\t\t\t\"width\": 4,\n\t\t\t\"length\": 6,\n\t\t\t\"unit\": \"INCH\"\n\t\t},\n\t\t\"dpi\": 300,\n\t\t\"pageLayout\": \"DEFAULT\",\n\t\t\"needFileJoining\": false,\n\t\t\"requestedDocumentTypes\": [\n\t\t\t\"LABEL\"\n\t\t]\n\t}\n}"
						},
						"url": {
							"raw": "{{api-host}}/shipping/v2/shipments",
							"host": [
								"{{api-host}}"
							],
							"path": [
								"shipping",
								"v2",
								"shipments"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Label Purchase With Deliver To Counter Via Get Rates and Purchase Shipment APIs",
			"item": [
				{
					"name": "1. Get Access Token",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"name": "Content-Type",
								"value": "application/x-www-form-urlencoded",
								"type": "text"
							}
						],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{
									"key": "grant_type",
									"value": "refresh_token",
									"type": "text"
								},
								{
									"key": "refresh_token",
									"value": "<<YourRefreshTokenHere>>",
									"type": "text"
								},
								{
									"key": "client_id",
									"value": "<<YourClientIdHere>>",
									"type": "text"
								},
								{
									"key": "client_secret",
									"value": "<<YourClientSecretHere>>",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{token-host}}/auth/o2/token",
							"host": [
								"{{token-host}}"
							],
							"path": [
								"auth",
								"o2",
								"token"
							]
						}
					},
					"response": []
				},
				{
					"name": "2. Access Points API",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									""
								],
								"type": "text/javascript"
							}
						}
					],
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [
							{
								"key": "x-amz-access-token",
								"value": "{{x-amz-access-token}}",
								"type": "text"
							},
							{
								"key": "x-amzn-shipping-business-id",
								"value": "AmazonShipping_UK",
								"type": "text",
								"description": "Works only with UK Market for now"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{api-host}}/shipping/v2/accessPoints?accessPointTypes=HELIX&countryCode=GB&postalCode=<<DestinationPostCodeHere>>",
							"host": [
								"{{api-host}}"
							],
							"path": [
								"shipping",
								"v2",
								"accessPoints"
							],
							"query": [
								{
									"key": "accessPointTypes",
									"value": "HELIX"
								},
								{
									"key": "countryCode",
									"value": "GB",
									"description": "Works only with GB Market for now"
								},
								{
									"key": "postalCode",
									"value": "<<DestinationPostCodeHere>>"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "3. Get Shipping Rates - OFF-Amazon With AccessPointId",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									""
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"name": "Content-Type",
								"type": "text",
								"value": "application/json"
							},
							{
								"key": "x-amz-access-token",
								"type": "text",
								"value": "{{x-amz-access-token}}"
							},
							{
								"key": "x-amzn-shipping-business-id",
								"type": "text",
								"value": "<<BusinessIdHere>>",
								"description": "Please Refer https://developer-docs.amazon.com/amazon-shipping/docs/shipping-api-v2-reference#x-amzn-shipping-business-id"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"shipTo\": {\n        \"name\": \"A3\",\n        \"addressLine1\": \"SWA Test Account\",\n        \"addressLine2\": \"SWA Test Account\",\n        \"addressLine3\": \"SWA Test Account\",\n        \"stateOrRegion\": \"\",\n        \"postalCode\": \"DN1 1QZ\",\n        \"city\": \"Doncaster\",\n        \"countryCode\": \"GB\",\n        \"email\": \"[email protected]\",\n        \"phoneNumber\": \"444-444-4444\"\n    },\n    \"shipFrom\": {\n        \"name\": \"A1\",\n        \"addressLine1\": \"4 Neal Street\",\n        \"stateOrRegion\": \"\",\n        \"postalCode\": \"WC2H 9QL\",\n        \"city\": \"London\",\n        \"countryCode\": \"GB\",\n        \"email\": \"[email protected]\",\n        \"phoneNumber\": \"444-444-4444\"\n    },\n    \"packages\": [\n        {\n            \"dimensions\": {\n                \"length\": 3.14,\n                \"width\": 3.14,\n                \"height\": 3.14,\n                \"unit\": \"INCH\"\n            },\n            \"weight\": {\n                \"unit\": \"KILOGRAM\",\n                \"value\": 3.14159\n            },\n            \"items\": [\n                {\n                    \"quantity\": 1,\n                    \"itemIdentifier\": \"V-02\",\n                    \"description\": \"Sundries\",\n                    \"isHazmat\": false,\n                    \"weight\": {\n                        \"unit\": \"KILOGRAM\",\n                        \"value\": 1.14159\n                    }\n                },\n                {\n                    \"quantity\": 1,\n                    \"itemIdentifier\": \"V-01\",\n                    \"description\": \"Sundries\",\n                    \"isHazmat\": false,\n                    \"weight\": {\n                        \"unit\": \"KILOGRAM\",\n                        \"value\": 1.14159\n                    }\n                }\n            ],\n            \"insuredValue\": {\n                \"unit\": \"GBP\",\n                \"value\": 29.98\n            },\n            \"packageClientReferenceId\": \"abcd\",\n            \"sellerDisplayName\": \"A TEST Seller\"\n        }\n    ],\n    \"channelDetails\": {\n        \"channelType\": \"EXTERNAL\"\n    },\n    \"destinationAccessPointDetails\": {\n        \"accessPointId\": \"30df9f2a-5da6-4719-9393-491db2082f77\"\n    }\n}"
						},
						"url": {
							"raw": "{{api-host}}/shipping/v2/shipments/rates",
							"host": [
								"{{api-host}}"
							],
							"path": [
								"shipping",
								"v2",
								"shipments",
								"rates"
							]
						}
					},
					"response": []
				},
				{
					"name": "4. Purchase Shipment",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"name": "Content-Type",
								"type": "text",
								"value": "application/json"
							},
							{
								"key": "x-amz-access-token",
								"type": "text",
								"value": "{{x-amz-access-token}}"
							},
							{
								"key": "x-amzn-shipping-business-id",
								"type": "text",
								"value": "<<BusinessIdHere>>",
								"description": "Please Refer https://developer-docs.amazon.com/amazon-shipping/docs/shipping-api-v2-reference#x-amzn-shipping-business-id"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"requestToken\": \"<<Request Token Value from getRates>>\",\n\t\"rateId\": \"<<rateID Value from getRates>>\",\n\t\"requestedDocumentSpecification\": {\n\t\t\"format\": \"PNG\",\n\t\t\"size\": {\n\t\t\t\"width\": 4,\n\t\t\t\"length\": 6,\n\t\t\t\"unit\": \"INCH\"\n\t\t},\n\t\t\"dpi\": 300,\n\t\t\"pageLayout\": \"DEFAULT\",\n\t\t\"needFileJoining\": false,\n\t\t\"requestedDocumentTypes\": [\n\t\t\t\"LABEL\"\n\t\t]\n\t}\n}"
						},
						"url": {
							"raw": "{{api-host}}/shipping/v2/shipments",
							"host": [
								"{{api-host}}"
							],
							"path": [
								"shipping",
								"v2",
								"shipments"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Label Purchase Via Smart Purchase API",
			"item": [
				{
					"name": "1. Get Access Token",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"name": "Content-Type",
								"value": "application/x-www-form-urlencoded",
								"type": "text"
							}
						],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{
									"key": "grant_type",
									"value": "refresh_token",
									"type": "text"
								},
								{
									"key": "refresh_token",
									"value": "<<YourRefreshTokenHere>>",
									"type": "text"
								},
								{
									"key": "client_id",
									"value": "<<YourClientIdHere>>",
									"type": "text"
								},
								{
									"key": "client_secret",
									"value": "<<YourClientSecretHere>>",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{token-host}}/auth/o2/token",
							"host": [
								"{{token-host}}"
							],
							"path": [
								"auth",
								"o2",
								"token"
							]
						}
					},
					"response": []
				},
				{
					"name": "2. Smart Purchase Shipment - OFF-Amazon",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									""
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json",
								"type": "text"
							},
							{
								"key": "x-amz-access-token",
								"value": "{{x-amz-access-token}}",
								"type": "text"
							},
							{
								"key": "x-amzn-shipping-business-id",
								"value": "<<BusinessIdHere>>",
								"type": "text",
								"description": "Please Refer https://developer-docs.amazon.com/amazon-shipping/docs/shipping-api-v2-reference#x-amzn-shipping-business-id"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"channelDetails\": {\r\n        \"channelType\": \"EXTERNAL\"\r\n    },\r\n    \"labelSpecifications\": {\r\n        \"dpi\": 300,\r\n        \"format\": \"PNG\",\r\n        \"needFileJoining\": false,\r\n        \"pageLayout\": \"DEFAULT\",\r\n        \"requestedDocumentTypes\": [\r\n            \"LABEL\"\r\n        ],\r\n        \"size\": {\r\n            \"length\": 6.0,\r\n            \"unit\": \"INCH\",\r\n            \"width\": 4.0\r\n        }\r\n    },\r\n    \"packages\": [\r\n        {\r\n            \"dimensions\": {\r\n                \"length\": 15,\r\n                \"width\": 10,\r\n                \"height\": 10,\r\n                \"unit\": \"CENTIMETER\"\r\n            },\r\n            \"insuredValue\": {\r\n                \"value\": 0.01,\r\n                \"unit\": \"GBP\"\r\n            },\r\n            \"isHazmat\": false,\r\n            \"items\": [\r\n                {\r\n                    \"itemValue\": {\r\n                        \"value\": 0.01,\r\n                        \"unit\": \"GBP\"\r\n                    },\r\n                    \"description\": \"Item\",\r\n                    \"itemIdentifier\": \"20231003140431o0tyegwsn3o\",\r\n                    \"quantity\": 1,\r\n                    \"weight\": {\r\n                        \"unit\": \"GRAM\",\r\n                        \"value\": 1900\r\n                    },\r\n                    \"isHazmat\": false\r\n                }\r\n            ],\r\n            \"packageClientReferenceId\": \"20231003140431gkuelozg2ys\",\r\n            \"weight\": {\r\n                \"unit\": \"GRAM\",\r\n                \"value\": 1900\r\n            }\r\n        }\r\n    ],\r\n    \"serviceSelection\": {\r\n        \"serviceId\": [\r\n            \"SWA-UK-2D\"\r\n        ]\r\n    },\r\n    \"shipTo\": {\r\n        \"name\": \"A3\",\r\n        \"addressLine1\": \"SWA Test Account\",\r\n        \"addressLine2\": \"SWA Test Account\",\r\n        \"addressLine3\": \"SWA Test Account\",\r\n        \"stateOrRegion\": \"\",\r\n        \"postalCode\": \"DN1 1QZ\",\r\n        \"city\": \"Doncaster\",\r\n        \"countryCode\": \"GB\",\r\n        \"email\": \"[email protected]\",\r\n        \"phoneNumber\": \"444-444-4444\"\r\n    },\r\n    \"shipFrom\": {\r\n        \"name\": \"A1\",\r\n        \"addressLine1\": \"4 Neal Street\",\r\n        \"stateOrRegion\": \"\",\r\n        \"postalCode\": \"WC2H 9QL\",\r\n        \"city\": \"London\",\r\n        \"countryCode\": \"GB\",\r\n        \"email\": \"[email protected]\",\r\n        \"phoneNumber\": \"444-444-4444\"\r\n    }\r\n}"
						},
						"url": {
							"raw": "{{api-host}}/shipping/v2/oneClickShipment",
							"host": [
								"{{api-host}}"
							],
							"path": [
								"shipping",
								"v2",
								"oneClickShipment"
							]
						}
					},
					"response": []
				},
				{
					"name": "2. Smart Purchase Shipment - ON-Amazon",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									""
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json",
								"type": "text"
							},
							{
								"key": "x-amz-access-token",
								"value": "{{x-amz-access-token}}",
								"type": "text"
							},
							{
								"key": "x-amzn-shipping-business-id",
								"value": "<<BusinessIdHere>>",
								"type": "text",
								"description": "Please Refer https://developer-docs.amazon.com/amazon-shipping/docs/shipping-api-v2-reference#x-amzn-shipping-business-id"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"channelDetails\": {\r\n        \"channelType\": \"AMAZON\",\r\n        \"amazonOrderDetails\": {\r\n            \"orderId\": \"113-3080243-4028244\"\r\n        }\r\n    },\r\n    \"labelSpecifications\": {\r\n        \"dpi\": 300,\r\n        \"format\": \"PNG\",\r\n        \"needFileJoining\": false,\r\n        \"pageLayout\": \"DEFAULT\",\r\n        \"requestedDocumentTypes\": [\r\n            \"LABEL\"\r\n        ],\r\n        \"size\": {\r\n            \"length\": 6.0,\r\n            \"unit\": \"INCH\",\r\n            \"width\": 4.0\r\n        }\r\n    },\r\n    \"packages\": [\r\n        {\r\n            \"dimensions\": {\r\n                \"length\": 15,\r\n                \"width\": 10,\r\n                \"height\": 10,\r\n                \"unit\": \"CENTIMETER\"\r\n            },\r\n            \"insuredValue\": {\r\n                \"value\": 0.01,\r\n                \"unit\": \"GBP\"\r\n            },\r\n            \"isHazmat\": false,\r\n            \"items\": [\r\n                {\r\n                    \"itemValue\": {\r\n                        \"value\": 0.01,\r\n                        \"unit\": \"GBP\"\r\n                    },\r\n                    \"description\": \"Item\",\r\n                    \"itemIdentifier\": \"20231003140431o0tyegwsn3o\",\r\n                    \"quantity\": 1,\r\n                    \"weight\": {\r\n                        \"unit\": \"GRAM\",\r\n                        \"value\": 1900\r\n                    },\r\n                    \"isHazmat\": false\r\n                }\r\n            ],\r\n            \"packageClientReferenceId\": \"20231003140431gkuelozg2ys\",\r\n            \"weight\": {\r\n                \"unit\": \"GRAM\",\r\n                \"value\": 1900\r\n            }\r\n        }\r\n    ],\r\n    \"serviceSelection\": {\r\n        \"serviceId\": [\r\n            \"SWA-UK-2D\"\r\n        ]\r\n    },\r\n    \"shipTo\": {\r\n        \"name\": \"A3\",\r\n        \"addressLine1\": \"SWA Test Account\",\r\n        \"addressLine2\": \"SWA Test Account\",\r\n        \"addressLine3\": \"SWA Test Account\",\r\n        \"stateOrRegion\": \"\",\r\n        \"postalCode\": \"DN1 1QZ\",\r\n        \"city\": \"Doncaster\",\r\n        \"countryCode\": \"GB\",\r\n        \"email\": \"[email protected]\",\r\n        \"phoneNumber\": \"444-444-4444\"\r\n    },\r\n    \"shipFrom\": {\r\n        \"name\": \"A1\",\r\n        \"addressLine1\": \"4 Neal Street\",\r\n        \"stateOrRegion\": \"\",\r\n        \"postalCode\": \"WC2H 9QL\",\r\n        \"city\": \"London\",\r\n        \"countryCode\": \"GB\",\r\n        \"email\": \"[email protected]\",\r\n        \"phoneNumber\": \"444-444-4444\"\r\n    }\r\n}"
						},
						"url": {
							"raw": "{{api-host}}/shipping/v2/oneClickShipment",
							"host": [
								"{{api-host}}"
							],
							"path": [
								"shipping",
								"v2",
								"oneClickShipment"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Label Purchase With Deliver To Counter Via Smart Purchase API",
			"item": [
				{
					"name": "1. Get Access Token",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"name": "Content-Type",
								"value": "application/x-www-form-urlencoded",
								"type": "text"
							}
						],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{
									"key": "grant_type",
									"value": "refresh_token",
									"type": "text"
								},
								{
									"key": "refresh_token",
									"value": "<<YourRefreshTokenHere>>",
									"type": "text"
								},
								{
									"key": "client_id",
									"value": "<<YourClientIdHere>>",
									"type": "text"
								},
								{
									"key": "client_secret",
									"value": "<<YourClientSecretHere>>",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{token-host}}/auth/o2/token",
							"host": [
								"{{token-host}}"
							],
							"path": [
								"auth",
								"o2",
								"token"
							]
						}
					},
					"response": []
				},
				{
					"name": "2. Access Points API",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									""
								],
								"type": "text/javascript"
							}
						}
					],
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [
							{
								"key": "x-amz-access-token",
								"value": "{{x-amz-access-token}}",
								"type": "text"
							},
							{
								"key": "x-amzn-shipping-business-id",
								"value": "AmazonShipping_UK",
								"type": "text",
								"description": "Works only with UK Market for now"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{api-host}}/shipping/v2/accessPoints?accessPointTypes=HELIX&countryCode=GB&postalCode=<<DestinationPostCodeHere>>",
							"host": [
								"{{api-host}}"
							],
							"path": [
								"shipping",
								"v2",
								"accessPoints"
							],
							"query": [
								{
									"key": "accessPointTypes",
									"value": "HELIX"
								},
								{
									"key": "countryCode",
									"value": "GB",
									"description": "Works only with GB Market for now"
								},
								{
									"key": "postalCode",
									"value": "<<DestinationPostCodeHere>>"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "2. Smart Purchase Shipment - OFF-Amazon",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									""
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json",
								"type": "text"
							},
							{
								"key": "x-amz-access-token",
								"value": "{{x-amz-access-token}}",
								"type": "text"
							},
							{
								"key": "x-amzn-shipping-business-id",
								"value": "AmazonShipping_UK",
								"type": "text",
								"description": "Please Refer https://developer-docs.amazon.com/amazon-shipping/docs/shipping-api-v2-reference#x-amzn-shipping-business-id"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"channelDetails\": {\r\n        \"channelType\": \"EXTERNAL\"\r\n    },\r\n    \"labelSpecifications\": {\r\n        \"dpi\": 300,\r\n        \"format\": \"PNG\",\r\n        \"needFileJoining\": false,\r\n        \"pageLayout\": \"DEFAULT\",\r\n        \"requestedDocumentTypes\": [\r\n            \"LABEL\"\r\n        ],\r\n        \"size\": {\r\n            \"length\": 6.0,\r\n            \"unit\": \"INCH\",\r\n            \"width\": 4.0\r\n        }\r\n    },\r\n    \"packages\": [\r\n        {\r\n            \"dimensions\": {\r\n                \"length\": 15,\r\n                \"width\": 10,\r\n                \"height\": 10,\r\n                \"unit\": \"CENTIMETER\"\r\n            },\r\n            \"insuredValue\": {\r\n                \"value\": 0.01,\r\n                \"unit\": \"GBP\"\r\n            },\r\n            \"isHazmat\": false,\r\n            \"items\": [\r\n                {\r\n                    \"itemValue\": {\r\n                        \"value\": 0.01,\r\n                        \"unit\": \"GBP\"\r\n                    },\r\n                    \"description\": \"Item\",\r\n                    \"itemIdentifier\": \"20231003140431o0tyegwsn3o\",\r\n                    \"quantity\": 1,\r\n                    \"weight\": {\r\n                        \"unit\": \"GRAM\",\r\n                        \"value\": 1900\r\n                    },\r\n                    \"isHazmat\": false\r\n                }\r\n            ],\r\n            \"packageClientReferenceId\": \"20231003140431gkuelozg2ys\",\r\n            \"weight\": {\r\n                \"unit\": \"GRAM\",\r\n                \"value\": 1900\r\n            }\r\n        }\r\n    ],\r\n    \"serviceSelection\": {\r\n        \"serviceId\": [\r\n            \"SWA-UK-2D\"\r\n        ]\r\n    },\r\n    \"shipTo\": {\r\n        \"name\": \"A3\",\r\n        \"addressLine1\": \"SWA Test Account\",\r\n        \"addressLine2\": \"SWA Test Account\",\r\n        \"addressLine3\": \"SWA Test Account\",\r\n        \"stateOrRegion\": \"\",\r\n        \"postalCode\": \"DN1 1QZ\",\r\n        \"city\": \"Doncaster\",\r\n        \"countryCode\": \"GB\",\r\n        \"email\": \"[email protected]\",\r\n        \"phoneNumber\": \"444-444-4444\"\r\n    },\r\n    \"shipFrom\": {\r\n        \"name\": \"A1\",\r\n        \"addressLine1\": \"4 Neal Street\",\r\n        \"stateOrRegion\": \"\",\r\n        \"postalCode\": \"WC2H 9QL\",\r\n        \"city\": \"London\",\r\n        \"countryCode\": \"GB\",\r\n        \"email\": \"[email protected]\",\r\n        \"phoneNumber\": \"444-444-4444\"\r\n    },\r\n    \"destinationAccessPointDetails\": {\r\n        \"accessPointId\": \"30df9f2a-5da6-4719-9393-491db2082f77\"\r\n    }\r\n}"
						},
						"url": {
							"raw": "{{api-host}}/shipping/v2/oneClickShipment",
							"host": [
								"{{api-host}}"
							],
							"path": [
								"shipping",
								"v2",
								"oneClickShipment"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Other Important APIs",
			"item": [
				{
					"name": "Get Shipment Tracking",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [
							{
								"key": "x-amz-access-token",
								"type": "text",
								"value": "{{x-amz-access-token}}"
							},
							{
								"key": "Accept",
								"value": "application/json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{api-host}}/shipping/v2/tracking?carrierId=<<CarrierIdHere>>&trackingId=<<TrackingIDHere>>",
							"host": [
								"{{api-host}}"
							],
							"path": [
								"shipping",
								"v2",
								"tracking"
							],
							"query": [
								{
									"key": "carrierId",
									"value": "<<CarrierIdHere>>"
								},
								{
									"key": "trackingId",
									"value": "<<TrackingIDHere>>"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Shipment Documents",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [
							{
								"key": "x-amz-access-token",
								"value": "{{x-amz-access-token}}",
								"type": "text"
							},
							{
								"key": "x-amzn-shipping-business-id",
								"value": "<<BusinessIdHere>>",
								"type": "text",
								"description": "Please Refer https://developer-docs.amazon.com/amazon-shipping/docs/shipping-api-v2-reference#x-amzn-shipping-business-id"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{api-host}}/shipping/v2/shipments/<<ShipmentID>>/documents?packageClientReferenceId=<<ClientRefID>>&format=<<DOCFormat>>",
							"host": [
								"{{api-host}}"
							],
							"path": [
								"shipping",
								"v2",
								"shipments",
								"<<ShipmentID>>",
								"documents"
							],
							"query": [
								{
									"key": "packageClientReferenceId",
									"value": "<<ClientRefID>>"
								},
								{
									"key": "format",
									"value": "<<DOCFormat>>"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Cancel Shipment",
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "PUT",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json",
								"type": "text"
							},
							{
								"key": "x-amz-access-token",
								"value": "{{x-amz-access-token}}",
								"type": "text"
							},
							{
								"key": "x-amzn-shipping-business-id",
								"value": "<<BusinessIdHere>>",
								"type": "text",
								"description": "Please Refer https://developer-docs.amazon.com/amazon-shipping/docs/shipping-api-v2-reference#x-amzn-shipping-business-id"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{api-host}}/shipping/v2/shipments/<<ShipmentIDHere>>/cancel",
							"host": [
								"{{api-host}}"
							],
							"path": [
								"shipping",
								"v2",
								"shipments",
								"<<ShipmentIDHere>>",
								"cancel"
							]
						}
					},
					"response": []
				}
			]
		}
	]
}

Postman Collection JSON - India Marketplace

{
  "info": {
    "_postman_id": "9f4f0f9d-176f-414d-b873-6e25e5c078b3",
    "name": "[Prod] IN-Amazon Shipping APIs",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
    "_exporter_id": "43711329",
    "_collection_link": "https://go.postman.co/collection/43711329-9f4f0f9d-176f-414d-b873-6e25e5c078b3?source=collection_link"
  },
  "item": [
    {
      "name": "2. IN-SWA Manifestation APIs",
      "item": [
        {
          "name": "2.1.a: GetRates_Prepaid [Rates Calling]",
          "request": {
            "auth": {
              "type": "noauth"
            },
            "method": "POST",
            "header": [
              {
                "key": "x-amz-access-token",
                "value": "{{x-amz-access-token}}",
                "description": "pls insert the access token-(x-amz-access-token)"
              },
              {
                "key": "x-amzn-shipping-business-id",
                "value": "AmazonShipping_IN",
                "description": "BUSINESSIDHERE"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\r\n  \"shipTo\": {\r\n    \"name\": \"Shruti\",\r\n    \"addressLine1\": \"60characters\",\r\n    \"addressLine2\": \"60characters\",\r\n    \"addressLine3\": \"60characters\",\r\n    \"stateOrRegion\": \"KA\",\r\n    \"city\": \"Bangalore\",\r\n    \"countryCode\": \"IN\",\r\n    \"postalCode\": \"560023\",\r\n    \"email\": \"[email protected]\",\r\n    \"phoneNumber\": \"9999999991\"\r\n  },\r\n  \"shipFrom\": {\r\n    \"name\": \"Shikha\",\r\n    \"addressLine1\": \"60characters\",\r\n    \"addressLine2\": \"60characters\",\r\n    \"addressLine3\": \"60characters\",\r\n    \"stateOrRegion\": \"KA\",\r\n    \"city\": \"Bangalore\",\r\n    \"countryCode\": \"IN\",\r\n    \"postalCode\": \"560055\",\r\n    \"email\": \"[email protected]\",\r\n    \"phoneNumber\": \"9999999990\"\r\n  },\r\n  \"returnTo\": {\r\n    \"name\": \"SS\",\r\n    \"addressLine1\": \"string\",\r\n    \"addressLine2\": \"string\",\r\n    \"addressLine3\": \"string\",\r\n    \"stateOrRegion\": \"string\",\r\n    \"city\": \"string\",\r\n    \"countryCode\": \"IN\",\r\n    \"postalCode\": \"560055\",\r\n    \"email\": \"[email protected]\",\r\n    \"phoneNumber\": \"9999999990\"\r\n  },\r\n  \"shipDate\": \"2026-06-30T02:28:43Z\",\r\n  \"packages\": [\r\n    {\r\n      \"dimensions\": {\r\n        \"length\": 10,\r\n        \"width\": 10,\r\n        \"height\": 5,\r\n        \"unit\": \"CENTIMETER\"\r\n      },\r\n      \"weight\": {\r\n        \"unit\": \"GRAM\",\r\n        \"value\": 500\r\n      },\r\n      \"insuredValue\": {\r\n        \"value\": 100,\r\n        \"unit\": \"INR\"\r\n      },\r\n      \"isHazmat\": false,\r\n      \"sellerDisplayName\": \"SWA\",\r\n      \"charges\": [\r\n        {\r\n          \"amount\": {\r\n            \"value\": 100,\r\n            \"unit\": \"INR\"\r\n          },\r\n          \"chargeType\": \"TAX\"\r\n        }\r\n      ],\r\n      \"packageClientReferenceId\": \"PrepaidOrderID\",\r\n      \"items\": [\r\n        {\r\n          \"itemValue\": {\r\n            \"value\": 50,\r\n            \"unit\": \"INR\"\r\n          },\r\n          \"description\": \"Books\",\r\n          \"itemIdentifier\": \"SKU1\",\r\n          \"quantity\": 1,\r\n          \"weight\": {\r\n            \"unit\": \"GRAM\",\r\n            \"value\": 400\r\n          },\r\n          \"isHazmat\": false,\r\n          \"productType\": \"Stationery\",\r\n          \"invoiceDetails\": {\r\n            \"invoiceNumber\": \"InvoiceID#\",\r\n            \"invoiceDate\": \"2026-06-30T18:28:43Z\"\r\n          }\r\n        }\r\n      ]\r\n    }\r\n  ],\r\n  \"taxDetails\": [\r\n    {\r\n      \"taxType\": \"GST\",\r\n      \"taxRegistrationNumber\": \"GSTID#\"\r\n    }\r\n  ],\r\n  \"channelDetails\": {\r\n    \"channelType\": \"EXTERNAL\"\r\n  }\r\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://sellingpartnerapi-eu.amazon.com/shipping/v2/shipments/rates",
              "protocol": "https",
              "host": [
                "sellingpartnerapi-eu",
                "amazon",
                "com"
              ],
              "path": [
                "shipping",
                "v2",
                "shipments",
                "rates"
              ]
            }
          },
          "response": []
        },
        {
          "name": "2.1.b: PurchaseShipment_Prepaid [GetTID & Label]",
          "request": {
            "auth": {
              "type": "noauth"
            },
            "method": "POST",
            "header": [
              {
                "key": "x-amz-access-token",
                "value": "{{x-amz-access-token}}",
                "description": "Pls insert the access token{x-amz-access-token"
              },
              {
                "key": "x-amzn-shipping-business-id",
                "value": "AmazonShipping_IN",
                "description": "BUSINESSIDHERE"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\r\n  \"requestToken\": \"REQUEST TOKEN VALUE FROM GETRATES\",\r\n  \"rateId\": \"RATEID VALUE FROM GETRATES\",\r\n  \"requestedDocumentSpecification\": {\r\n    \"format\": \"PDF\",\r\n    \"size\": {\r\n      \"width\": 4.0,\r\n      \"length\": 6.0,\r\n      \"unit\": \"INCH\"\r\n    },\r\n    \"dpi\": 300,\r\n    \"pageLayout\": \"DEFAULT\",\r\n    \"needFileJoining\": false,\r\n    \"requestedDocumentTypes\": [\r\n      \"LABEL\"\r\n    ],\r\n    \"requestedLabelCustomization\": {\r\n      \"requestAttributes\": [\r\n        \"PACKAGE_CLIENT_REFERENCE_ID\"\r\n      ]\r\n    }\r\n  }\r\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://sellingpartnerapi-eu.amazon.com/shipping/v2/shipments",
              "protocol": "https",
              "host": [
                "sellingpartnerapi-eu",
                "amazon",
                "com"
              ],
              "path": [
                "shipping",
                "v2",
                "shipments"
              ]
            }
          },
          "response": []
        },
        {
          "name": "2.2.a: GetRates_COD [Rates Calling]",
          "request": {
            "auth": {
              "type": "noauth"
            },
            "method": "POST",
            "header": [
              {
                "key": "x-amz-access-token",
                "value": "{{x-amz-access-token}}",
                "description": "pls insert the access token-(x-amz-access-token)"
              },
              {
                "key": "x-amzn-shipping-business-id",
                "value": "AmazonShipping_IN"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\r\n    \"shipTo\": {\r\n    \"name\": \"Shruti\",\r\n    \"addressLine1\": \"60characters\",\r\n    \"addressLine2\": \" 60characters\",\r\n    \"addressLine3\": \"60characters\",\r\n    \"stateOrRegion\": \"KA\",\r\n    \"city\": \"Bangalore\",\r\n    \"countryCode\": \"IN\",\r\n    \"postalCode\": \"560023\",\r\n    \"email\": \"[email protected]\",\r\n    \"phoneNumber\": \"9999999991\"\r\n  },\r\n  \"shipFrom\": {\r\n    \"name\": \"Shikha\",\r\n    \"addressLine1\": \"60characters\",\r\n    \"addressLine2\": \"60characters\",\r\n    \"addressLine3\": \"60characters\",\r\n    \"stateOrRegion\": \"KA\",\r\n    \"city\": \"Bangalore\",\r\n    \"countryCode\": \"IN\",\r\n    \"postalCode\": \"560055\",\r\n    \"email\": \"[email protected]\",\r\n    \"phoneNumber\": \"9999999990\"\r\n  },\r\n  \"returnTo\": {\r\n    \"name\": \"SS\",\r\n    \"addressLine1\": \"string\",\r\n    \"addressLine2\": \"string\",\r\n    \"addressLine3\": \"string\",\r\n    \"stateOrRegion\": \"string\",\r\n    \"city\": \"string\",\r\n    \"countryCode\": \"IN\",\r\n    \"postalCode\": \"560055\",\r\n    \"email\": \"[email protected]\",\r\n    \"phoneNumber\": \"9999999990\"\r\n  },\r\n  \"shipDate\": \"2026-06-30T02:28:43Z\",\r\n  \"packages\": [\r\n    {\r\n      \"dimensions\": {\r\n        \"length\": 10,\r\n        \"width\": 10,\r\n        \"height\": 5,\r\n        \"unit\": \"CENTIMETER\"\r\n      },\r\n      \"weight\": {\r\n        \"unit\": \"GRAM\",\r\n        \"value\": 500\r\n      },\r\n      \"insuredValue\": {\r\n        \"value\": 100,\r\n        \"unit\": \"INR\"\r\n      },\r\n      \"isHazmat\": false,\r\n      \"sellerDisplayName\": \"SWA\",\r\n      \"charges\": [\r\n        {\r\n          \"amount\": {\r\n            \"value\": 100,\r\n            \"unit\": \"INR\"\r\n          },\r\n          \"chargeType\": \"TAX\"\r\n        }\r\n      ],\r\n      \"packageClientReferenceId\": \"CODorder1\",\r\n      \"items\": [\r\n        {\r\n          \"itemValue\": {\r\n            \"value\": 50,\r\n            \"unit\": \"INR\"\r\n          },\r\n          \"description\": \"Books\",\r\n          \"itemIdentifier\": \"SKU1\",\r\n          \"quantity\": 1,\r\n          \"weight\": {\r\n            \"unit\": \"GRAM\",\r\n            \"value\": 400\r\n          },\r\n          \"isHazmat\": false,\r\n          \"productType\": \"Stationery\",\r\n          \"invoiceDetails\": {\r\n            \"invoiceNumber\": \"InvoiceID#\",\r\n            \"invoiceDate\": \"2026-06-30T18:28:43Z\"\r\n          }\r\n        }\r\n      ]\r\n    }\r\n  ],\r\n  \"valueAddedServices\": {\r\n    \"collectOnDelivery\": {\r\n      \"amount\": {\r\n        \"value\": 100,\r\n        \"unit\": \"INR\"\r\n      }\r\n    }\r\n  },\r\n  \"taxDetails\": [\r\n  {\r\n    \"taxType\": \"GST\",\r\n    \"taxRegistrationNumber\": \"GSTID#\"\r\n  }\r\n ],\r\n  \"channelDetails\": {\r\n    \"channelType\": \"EXTERNAL\"\r\n  }\r\n}\r\n",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://sellingpartnerapi-eu.amazon.com/shipping/v2/shipments/rates",
              "protocol": "https",
              "host": [
                "sellingpartnerapi-eu",
                "amazon",
                "com"
              ],
              "path": [
                "shipping",
                "v2",
                "shipments",
                "rates"
              ]
            }
          },
          "response": []
        },
        {
          "name": "2.2.b: PurchaseShipment_COD [GetTID & Label]",
          "request": {
            "auth": {
              "type": "noauth"
            },
            "method": "POST",
            "header": [
              {
                "key": "x-amz-access-token",
                "value": "{{x-amz-access-token}}",
                "description": "Pls insert the access token{x-amz-access-token"
              },
              {
                "key": "x-amzn-shipping-business-id",
                "value": "AmazonShipping_IN",
                "description": "BUSINESSIDHERE"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\r\n  \"requestToken\": \"REQUEST TOKEN VALUE FROM GETRATES\",\r\n  \"rateId\": \"RATEID VALUE FROM GETRATES\",\r\n  \"requestedDocumentSpecification\": {\r\n    \"format\": \"PDF\",\r\n    \"size\": {\r\n      \"width\": 4.0,\r\n      \"length\": 6.0,\r\n      \"unit\": \"INCH\"\r\n    },\r\n    \"dpi\": 300,\r\n    \"pageLayout\": \"DEFAULT\",\r\n    \"needFileJoining\": false,\r\n    \"requestedDocumentTypes\": [\r\n      \"LABEL\"\r\n    ],\r\n    \"requestedLabelCustomization\": {\r\n      \"requestAttributes\": [\r\n       \"PACKAGE_CLIENT_REFERENCE_ID\",\r\n       \"COLLECT_ON_DELIVERY_AMOUNT\"\r\n        ]\r\n        }\r\n    },\r\n    \"requestedValueAddedServices\": [\r\n      {\r\n      \"id\": \"CollectOnDelivery\"\r\n      }\r\n    ]\r\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://sellingpartnerapi-eu.amazon.com/shipping/v2/shipments",
              "protocol": "https",
              "host": [
                "sellingpartnerapi-eu",
                "amazon",
                "com"
              ],
              "path": [
                "shipping",
                "v2",
                "shipments"
              ]
            }
          },
          "response": []
        },
        {
          "name": "2.3.a: OneClick_Prepaid [GetTID & Label]",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "x-amz-access-token",
                "value": "{{x-amz-access-token}}"
              },
              {
                "key": "x-amzn-shipping-business-id",
                "value": "AmazonShipping_IN"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\r\n  \"shipTo\": {\r\n    \"name\": \"Shruti\",\r\n    \"addressLine1\": \"60 characters\",\r\n    \"addressLine2\": \"60 characters\",\r\n    \"addressLine3\": \"60 characters\",\r\n    \"stateOrRegion\": \"KA\",\r\n    \"city\": \"Bangalore\",\r\n    \"countryCode\": \"IN\",\r\n    \"postalCode\": \"560023\",\r\n    \"email\": \"[email protected]\",\r\n    \"phoneNumber\": \"1111111119\"\r\n  },\r\n  \"shipFrom\": {\r\n    \"name\": \"Shikha\",\r\n    \"addressLine1\": \"60 characters\",\r\n    \"addressLine2\": \"60 characters\",\r\n    \"addressLine3\": \"60 characters\",\r\n    \"stateOrRegion\": \"KA\",\r\n    \"city\": \"Bangalore\",\r\n    \"countryCode\": \"IN\",\r\n    \"postalCode\": \"560028\",\r\n    \"email\": \"[email protected]\",\r\n    \"phoneNumber\": \"1111111111\"\r\n  },\r\n  \"returnTo\": {\r\n    \"name\": \"SS\",\r\n    \"addressLine1\": \"string\",\r\n    \"addressLine2\": \"string\",\r\n    \"addressLine3\": \"string\",\r\n    \"stateOrRegion\": \"KA\",\r\n    \"city\": \"Bangalore\",\r\n    \"countryCode\": \"IN\",\r\n    \"postalCode\": \"560028\",\r\n    \"email\": \"[email protected]\",\r\n    \"phoneNumber\": \"1111111111\"\r\n  },\r\n  \"packages\": [\r\n    {\r\n      \"dimensions\": {\r\n        \"length\": 10,\r\n        \"width\": 10,\r\n        \"height\": 5,\r\n        \"unit\": \"CENTIMETER\"\r\n      },\r\n      \"weight\": {\r\n        \"unit\": \"GRAM\",\r\n        \"value\": 400\r\n      },\r\n      \"insuredValue\": {\r\n        \"value\": 500,\r\n        \"unit\": \"INR\"\r\n      },\r\n      \"isHazmat\": false,\r\n      \"sellerDisplayName\": \"SWA\",\r\n      \"charges\": [\r\n        {\r\n          \"amount\": {\r\n            \"value\": 500,\r\n            \"unit\": \"INR\"\r\n          },\r\n          \"chargeType\": \"TAX\"\r\n        }\r\n      ],\r\n      \"packageClientReferenceId\": \"PrepaidOrderID#\",\r\n      \"items\": [\r\n        {\r\n          \"itemValue\": {\r\n            \"value\": 500,\r\n            \"unit\": \"INR\"\r\n          },\r\n          \"description\": \"Book1\",\r\n          \"itemIdentifier\": \"SKU1\",\r\n          \"quantity\": 1,\r\n          \"weight\": {\r\n            \"unit\": \"GRAM\",\r\n            \"value\": 400\r\n          },\r\n          \"isHazmat\": false,\r\n          \"productType\": \"Stationery\",\r\n          \"invoiceDetails\": {\r\n            \"invoiceNumber\": \"InvoiceID#\",\r\n            \"invoiceDate\": \"2026-06-30T18:28:43Z\"\r\n          }\r\n        }\r\n      ]\r\n    }\r\n  ],\r\n  \"taxDetails\": [\r\n    {\r\n      \"taxType\": \"GST\",\r\n      \"taxRegistrationNumber\": \"GSTID#\"\r\n    }\r\n  ],\r\n  \"channelDetails\": {\r\n    \"channelType\": \"EXTERNAL\"\r\n  },\r\n  \"serviceSelection\": {\r\n    \"serviceId\": [\r\n      \"SWA-IN-OA\"\r\n    ]\r\n  },\r\n  \"labelSpecifications\": {\r\n    \"format\": \"PDF\",\r\n    \"size\": {\r\n      \"width\": 4,\r\n      \"length\": 6,\r\n      \"unit\": \"INCH\"\r\n    },\r\n    \"requestedLabelCustomization\": {\r\n      \"requestAttributes\": [\r\n        \"PACKAGE_CLIENT_REFERENCE_ID\"\r\n      ]\r\n    },\r\n    \"dpi\": 203,\r\n    \"pageLayout\": \"DEFAULT\",\r\n    \"needFileJoining\": false,\r\n    \"requestedDocumentTypes\": [\r\n      \"LABEL\"\r\n    ]\r\n  }\r\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://sellingpartnerapi-eu.amazon.com/shipping/v2/oneClickShipment",
              "protocol": "https",
              "host": [
                "sellingpartnerapi-eu",
                "amazon",
                "com"
              ],
              "path": [
                "shipping",
                "v2",
                "oneClickShipment"
              ]
            },
            "description": "Generated from cURL: curl --location '[https://sellingpartnerapi-eu.amazon.com/shipping/v2/oneClickShipment'](https://sellingpartnerapi-eu.amazon.com/shipping/v2/oneClickShipment')  \n\\--header 'x-amz-access-token: Atza|IwEBIG_vcS6F5Ky8vPcVlFuuBHE6mbKGw9wnvflq3_nzQVcJy67h7X2WPlNDMuUqmjkaRePfde3NiLC3KKopm6Ezzd9WQ1mySnhTI3FBIEvbm1u0mzukJPZXs4u-uTvh57EjpCkFgIs66oKZOntiOVtyk9LBEHCF8CbBaBxuaAlhpussYeAWyjJBZtISWhjldAky22Yje3RKqXBz9TUGts7iAQjrbxuy_Pvd8YHgL6nGWoU_HiV9WYexXkFORWjdSjBRqTKjWgLl6-Zn7A_quJUScWrDPOy3ok-f-MlFjzhz3pj6w2PQscsdAj7xxzr9Pa79AlhMbJDGKkfmgshCBiFMv0fY'  \n\\--header 'x-amzn-shipping-business-id: AmazonShipping_IN'  \n\\--header 'Content-Type: application/json'  \n\\--data-raw '{  \n\"shipTo\": {  \n\"name\": \"Ashwini Ajmera\",  \n\"addressLine1\": \"Hyderabad King koti, King koti Hyderabad\",  \n\"addressLine2\": \"30, Aryan Mahal, 6th Floor, C Road, before intercontinental\",  \n\"addressLine3\": \"string\",  \n\"companyName\": \"new\",  \n\"stateOrRegion\": \"telangana\",  \n\"city\": \"hyderabad\",  \n\"countryCode\": \"IN\",  \n\"postalCode\": \"500008\",  \n\"email\": \"[[email protected]](https://mailto:[email protected])\",  \n\"phoneNumber\": \"9159223373\"  \n},  \n\"shipFrom\": {  \n\"name\": \"new place\",  \n\"addressLine1\": \"ship to line1\",  \n\"addressLine2\": \"string\",  \n\"addressLine3\": \"string\",  \n\"companyName\": \"new place\",  \n\"stateOrRegion\": \"telangana\",  \n\"city\": \"hyderabad\",  \n\"countryCode\": \"IN\",  \n\"postalCode\": \"122001\",  \n\"email\": \"[[email protected]](https://mailto:[email protected])\",  \n\"phoneNumber\": \"1111111111\"  \n},  \n\"returnTo\": {  \n\"name\": \"return to test\",  \n\"addressLine1\": \"return to line1\",  \n\"addressLine2\": \"string\",  \n\"addressLine3\": \"string\",  \n\"companyName\": \"new place\",  \n\"stateOrRegion\": \"telangana\",  \n\"city\": \"hyderabad\",  \n\"countryCode\": \"IN\",  \n\"postalCode\": \"122001\",  \n\"email\": \"[[email protected]](https://mailto:[email protected])\",  \n\"phoneNumber\": \"1111111111\"  \n},  \n\"packages\": \\[  \n{  \n\"dimensions\": {  \n\"length\": 13,  \n\"width\": 9,  \n\"height\": 17,  \n\"unit\": \"CENTIMETER\"  \n},  \n\"weight\": {  \n\"unit\": \"GRAM\",  \n\"value\": 400  \n},  \n\"insuredValue\": {  \n\"value\": 10,  \n\"unit\": \"INR\"  \n},  \n\"isHazmat\": false,  \n\"sellerDisplayName\": \"new place\",  \n\"charges\": \\[  \n{  \n\"amount\": {  \n\"value\": 150,  \n\"unit\": \"INR\"  \n},  \n\"chargeType\": \"TAX\"  \n}  \n\\],  \n\"packageClientReferenceId\": \"12345\",  \n\"items\": \\[  \n{  \n\"itemValue\": {  \n\"value\": 2,  \n\"unit\": \"INR\"  \n},  \n\"description\": \"description of item1\",  \n\"itemIdentifier\": \"item-11111\",  \n\"quantity\": 1,  \n\"weight\": {  \n\"unit\": \"GRAM\",  \n\"value\": 400  \n},  \n\"isHazmat\": false,  \n\"productType\": \"health care\",  \n\"invoiceDetails\": {  \n\"invoiceNumber\": \"1234567\",  \n\"invoiceDate\": \"2022-05-31T18:28:43Z\"  \n}  \n}  \n\\]  \n}  \n\\],  \n\"taxDetails\": \\[  \n{  \n\"taxType\": \"GST\",  \n\"taxRegistrationNumber\": \"anbp1234\"  \n}  \n\\],  \n\"channelDetails\": {  \n\"channelType\": \"EXTERNAL\"  \n},  \n\"serviceSelection\": {  \n\"serviceId\": \\[  \n\"SWA-IN-OA\"  \n\\]  \n},  \n\"labelSpecifications\": {  \n\"format\": \"PDF\",  \n\"size\": {  \n\"width\": 4,  \n\"length\": 6,  \n\"unit\": \"INCH\"  \n},  \n\"requestedLabelCustomization\": {  \n\"requestAttributes\": \\[  \n\"PACKAGE_CLIENT_REFERENCE_ID\"  \n\\]  \n},  \n\"dpi\": 203,  \n\"pageLayout\": \"DEFAULT\",  \n\"needFileJoining\": false,  \n\"requestedDocumentTypes\": \\[  \n\"LABEL\"  \n\\]  \n}  \n}'\n\nMessage Naveen Cr:gr-outofoffice::hindu_temple:タットヴァマシ"
          },
          "response": []
        },
        {
          "name": "2.3.b: OneClick_COD [GetTID & Label]",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "x-amz-access-token",
                "value": "{{x-amz-access-token}}"
              },
              {
                "key": "x-amzn-shipping-business-id",
                "value": "AmazonShipping_IN"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\r\n  \"shipTo\": {\r\n    \"name\": \"Shruti\",\r\n    \"addressLine1\": \"60 characters\",\r\n    \"addressLine2\": \"60 characters\",\r\n    \"addressLine3\": \"60 characters\",\r\n    \"stateOrRegion\": \"KA\",\r\n    \"city\": \"Bangalore\",\r\n    \"countryCode\": \"IN\",\r\n    \"postalCode\": \"560023\",\r\n    \"email\": \"[email protected]\",\r\n    \"phoneNumber\": \"1111111119\"\r\n  },\r\n  \"shipFrom\": {\r\n    \"name\": \"Shikha\",\r\n    \"addressLine1\": \"60 characters\",\r\n    \"addressLine2\": \"60 characters\",\r\n    \"addressLine3\": \"60 characters\",\r\n    \"stateOrRegion\": \"KA\",\r\n    \"city\": \"Bangalore\",\r\n    \"countryCode\": \"IN\",\r\n    \"postalCode\": \"560028\",\r\n    \"email\": \"[email protected]\",\r\n    \"phoneNumber\": \"1111111111\"\r\n  },\r\n  \"returnTo\": {\r\n    \"name\": \"SS\",\r\n    \"addressLine1\": \"string\",\r\n    \"addressLine2\": \"string\",\r\n    \"addressLine3\": \"string\",\r\n    \"stateOrRegion\": \"KA\",\r\n    \"city\": \"Bangalore\",\r\n    \"countryCode\": \"IN\",\r\n    \"postalCode\": \"560028\",\r\n    \"email\": \"[email protected]\",\r\n    \"phoneNumber\": \"1111111111\"\r\n  },\r\n  \"packages\": [\r\n    {\r\n      \"dimensions\": {\r\n        \"length\": 10,\r\n        \"width\": 10,\r\n        \"height\": 5,\r\n        \"unit\": \"CENTIMETER\"\r\n      },\r\n      \"weight\": {\r\n        \"unit\": \"GRAM\",\r\n        \"value\": 400\r\n      },\r\n      \"insuredValue\": {\r\n        \"value\": 500,\r\n        \"unit\": \"INR\"\r\n      },\r\n      \"isHazmat\": false,\r\n      \"sellerDisplayName\": \"SWA\",\r\n      \"charges\": [\r\n        {\r\n          \"amount\": {\r\n            \"value\": 500,\r\n            \"unit\": \"INR\"\r\n          },\r\n          \"chargeType\": \"TAX\"\r\n        }\r\n      ],\r\n      \"packageClientReferenceId\": \"CODOrderID#\",\r\n      \"items\": [\r\n        {\r\n          \"itemValue\": {\r\n            \"value\": 500,\r\n            \"unit\": \"INR\"\r\n          },\r\n          \"description\": \"Book1\",\r\n          \"itemIdentifier\": \"SKU1\",\r\n          \"quantity\": 1,\r\n          \"weight\": {\r\n            \"unit\": \"GRAM\",\r\n            \"value\": 400\r\n          },\r\n          \"isHazmat\": false,\r\n          \"productType\": \"Stationery\",\r\n          \"invoiceDetails\": {\r\n            \"invoiceNumber\": \"InvoiceID#\",\r\n            \"invoiceDate\": \"2026-06-30T18:28:43Z\"\r\n          }\r\n        }\r\n      ]\r\n    }\r\n  ],\r\n    \"valueAddedServiceDetails\": [\r\n        {\r\n            \"id\": \"CollectOnDelivery\",\r\n            \"amount\": {\r\n                \"unit\": \"INR\",\r\n                \"value\": 500\r\n            }\r\n        }\r\n    ],\r\n    \"taxDetails\": [\r\n        {\r\n            \"taxType\": \"GST\",\r\n            \"taxRegistrationNumber\": \"GSTID#\"\r\n        }\r\n    ],\r\n    \"channelDetails\": {\r\n        \"channelType\": \"EXTERNAL\"\r\n    },\r\n    \"serviceSelection\": {\r\n        \"serviceId\": [\r\n            \"SWA-IN-OA\"\r\n        ]\r\n    },\r\n    \"labelSpecifications\": {\r\n        \"format\": \"PDF\",\r\n        \"size\": {\r\n            \"width\": 4,\r\n            \"length\": 6,\r\n            \"unit\": \"INCH\"\r\n        },\r\n        \"requestedLabelCustomization\": {\r\n            \"requestAttributes\": [\r\n                \"PACKAGE_CLIENT_REFERENCE_ID\",\r\n                \"COLLECT_ON_DELIVERY_AMOUNT\"\r\n            ]\r\n        },\r\n        \"dpi\": 203,\r\n        \"pageLayout\": \"DEFAULT\",\r\n        \"needFileJoining\": false,\r\n        \"requestedDocumentTypes\": [\r\n            \"LABEL\"\r\n        ]\r\n    }\r\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "https://sellingpartnerapi-eu.amazon.com/shipping/v2/oneClickShipment",
              "protocol": "https",
              "host": [
                "sellingpartnerapi-eu",
                "amazon",
                "com"
              ],
              "path": [
                "shipping",
                "v2",
                "oneClickShipment"
              ]
            },
            "description": "Generated from cURL: curl --location '[https://sellingpartnerapi-eu.amazon.com/shipping/v2/oneClickShipment'](https://sellingpartnerapi-eu.amazon.com/shipping/v2/oneClickShipment')  \n\\--header 'x-amz-access-token: Atza|IwEBIOGXiVEU-BHtBjWryBOEUXYkEyyfqyWYfubNMODPr8oIB4ZuFY8HRYZH-LBNrhtghgD2GIIE_Tmw99SM1T9ROmWRT8h8o9z0py6-Q25PskffnFo1AHJBmPo5hU8veCXaFscTvYdxnWxby3cuJPbMAFnaZH5gIeR6hH84MYJqUeI6marxLlqGgxgsln9G9-ltPGxHQ9cauOt3IG2x9CuRB9bewRweRH6LAQLoDzfWOpCA_j9mGsKJKiVD5quRkQ6vNBz8boqqwN5BqvIOyZQKweJpGDdt7aIZx7qOFgduCKg6_9b_X-MlWGzqhVsV3wAhzampzhXJgbqIV6Ev95-XOGt3'  \n\\--header 'x-amzn-shipping-business-id: AmazonShipping_IN'  \n\\--header 'Content-Type: application/json'  \n\\--data-raw '{  \n\"shipTo\": {  \n\"name\": \"Ashwini Ajmera\",  \n\"addressLine1\": \"Hyderabad King koti, King koti Hyderabad\",  \n\"addressLine2\": \"30, Aryan Mahal, 6th Floor, C Road, before intercontinental\",  \n\"addressLine3\": \"string\",  \n\"companyName\": \"new\",  \n\"stateOrRegion\": \"telangana\",  \n\"city\": \"hyderabad\",  \n\"countryCode\": \"IN\",  \n\"postalCode\": \"500008\",  \n\"email\": \"[[email protected]](https://mailto:[email protected])\",  \n\"phoneNumber\": \"9159223373\"  \n},  \n\"shipFrom\": {  \n\"name\": \"new place\",  \n\"addressLine1\": \"ship to line1\",  \n\"addressLine2\": \"string\",  \n\"addressLine3\": \"string\",  \n\"companyName\": \"new place\",  \n\"stateOrRegion\": \"telangana\",  \n\"city\": \"hyderabad\",  \n\"countryCode\": \"IN\",  \n\"postalCode\": \"122001\",  \n\"email\": \"[[email protected]](https://mailto:[email protected])\",  \n\"phoneNumber\": \"1111111111\"  \n},  \n\"returnTo\": {  \n\"name\": \"return to test\",  \n\"addressLine1\": \"return to line1\",  \n\"addressLine2\": \"string\",  \n\"addressLine3\": \"string\",  \n\"companyName\": \"new place\",  \n\"stateOrRegion\": \"telangana\",  \n\"city\": \"hyderabad\",  \n\"countryCode\": \"IN\",  \n\"postalCode\": \"122001\",  \n\"email\": \"[[email protected]](https://mailto:[email protected])\",  \n\"phoneNumber\": \"1111111111\"  \n},  \n\"packages\": \\[  \n{  \n\"dimensions\": {  \n\"length\": 13,  \n\"width\": 9,  \n\"height\": 17,  \n\"unit\": \"CENTIMETER\"  \n},  \n\"weight\": {  \n\"unit\": \"GRAM\",  \n\"value\": 400  \n},  \n\"insuredValue\": {  \n\"value\": 10,  \n\"unit\": \"INR\"  \n},  \n\"isHazmat\": false,  \n\"sellerDisplayName\": \"new place\",  \n\"charges\": \\[  \n{  \n\"amount\": {  \n\"value\": 150,  \n\"unit\": \"INR\"  \n},  \n\"chargeType\": \"TAX\"  \n}  \n\\],  \n\"packageClientReferenceId\": \"12345\",  \n\"items\": \\[  \n{  \n\"itemValue\": {  \n\"value\": 2,  \n\"unit\": \"INR\"  \n},  \n\"description\": \"description of item1\",  \n\"itemIdentifier\": \"item-11111\",  \n\"quantity\": 1,  \n\"weight\": {  \n\"unit\": \"GRAM\",  \n\"value\": 400  \n},  \n\"isHazmat\": false,  \n\"productType\": \"health care\",  \n\"invoiceDetails\": {  \n\"invoiceNumber\": \"1234567\",  \n\"invoiceDate\": \"2022-05-31T18:28:43Z\"  \n}  \n}  \n\\]  \n}  \n\\],  \n\"valueAddedServiceDetails\": \\[  \n{  \n\"id\": \"CollectOnDelivery\",  \n\"amount\": {  \n\"unit\": \"INR\",  \n\"value\": 30  \n}  \n}  \n\\],  \n\"taxDetails\": \\[  \n{  \n\"taxType\": \"GST\",  \n\"taxRegistrationNumber\": \"anbp1234\"  \n}  \n\\],  \n\"channelDetails\": {  \n\"channelType\": \"EXTERNAL\"  \n},  \n\"serviceSelection\": {  \n\"serviceId\": \\[  \n\"SWA-IN-OA\"  \n\\]  \n},  \n\"labelSpecifications\": {  \n\"format\": \"PDF\",  \n\"size\": {  \n\"width\": 4,  \n\"length\": 6,  \n\"unit\": \"INCH\"  \n},  \n\"requestedLabelCustomization\": {  \n\"requestAttributes\": \\[  \n\"PACKAGE_CLIENT_REFERENCE_ID\",  \n\"COLLECT_ON_DELIVERY_AMOUNT\"  \n\\]  \n},  \n\"dpi\": 203,  \n\"pageLayout\": \"DEFAULT\",  \n\"needFileJoining\": false,  \n\"requestedDocumentTypes\": \\[  \n\"LABEL\"  \n\\]  \n}  \n}'"
          },
          "response": []
        }
      ]
    },
    {
      "name": "1. Generate Access Token",
      "protocolProfileBehavior": {
        "disabledSystemHeaders": {}
      },
      "request": {
        "auth": {
          "type": "noauth"
        },
        "method": "POST",
        "header": [],
        "body": {
          "mode": "urlencoded",
          "urlencoded": [
            {
              "type": "text",
              "key": "grant_type",
              "value": "refresh_token"
            },
            {
              "type": "text",
              "key": "refresh_token",
              "value": "YOURREFRESHTOKENHERE"
            },
            {
              "type": "text",
              "key": "client_id",
              "value": "YOURCLIENTIDHERE"
            },
            {
              "type": "text",
              "key": "client_secret",
              "value": "YOURCLIENTSECRETHERE"
            }
          ]
        },
        "url": {
          "raw": "https://api.amazon.com/auth/o2/token",
          "protocol": "https",
          "host": [
            "api",
            "amazon",
            "com"
          ],
          "path": [
            "auth",
            "o2",
            "token"
          ]
        },
        "description": "Generated from cURL: curl --location '[https://api.amazon.com/auth/o2/token'](https://api.amazon.com/auth/o2/token')  \n\\--header 'Content-Type: application/x-www-form-urlencoded'  \n\\--data-urlencode 'grant_type=refresh_token'  \n\\--data-urlencode 'refresh_token=Atzr|IwEBIG8jpQ8RWdUtRx7TM2DJk5xhTvgjqC_NHIYFq5FRqTA-mLXPmL57uObobutC8mmFk5-J9GyjMTo9jRfgsXSIEupcLU9UCmbC-5D3RXzdzvMAQ78r2uHtyn8eRPgls2aDktUSw41p4e5EiKQS7FFD3YAyfLdRWlIqOOZcb5ukoVkeiY2k4yzUrYdRqXESKjGHPUvTDWVRXK0dZpLWfxAMRPwydsZxF9PRW8kks4a73srGiEtN2ZU98E6sGuIQCyrbrjIAXIxP-D5ilesphVxZy38C6DBjlzusyVp3uODXsQ_rC_L6i2M3X73aglrtX7Pqqgg'  \n\\--data-urlencode 'client_id=amzn1.application-oa2-client.99efd35c362c424989f04d701fa33077'  \n\\--data-urlencode 'client_secret=amzn1.oa2-cs.v1.04867b74f26dcd70222fe8e0b4bd4e81d15c3f392341d411d1536be56ca03084'"
      },
      "response": []
    },
    {
      "name": "3. TrackingPull_",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "x-amz-access-token",
            "value": "{{x-amz-access-token}}"
          },
          {
            "key": "x-amzn-shipping-business-id",
            "value": "AmazonShipping_IN"
          }
        ],
        "url": {
          "raw": "https://sellingpartnerapi-eu.amazon.com/shipping/v2/tracking?carrierId=ATS&trackingId=TRACKINGIDHERE",
          "protocol": "https",
          "host": [
            "sellingpartnerapi-eu",
            "amazon",
            "com"
          ],
          "path": [
            "shipping",
            "v2",
            "tracking"
          ],
          "query": [
            {
              "key": "carrierId",
              "value": "ATS"
            },
            {
              "key": "trackingId",
              "value": "TRACKINGIDHERE"
            }
          ]
        },
        "description": "Generated from cURL: curl --location 'https://sellingpartnerapi-eu.amazon.com/shipping/v2/tracking?carrierId=ATS&trackingId=328723784985' \\\r\n--header 'x-amz-access-token: Atza|IwEBIMiE_LDAypnrz_2PaFX2uS7iirZprvote8RKrciJ7v73yHVv4Hz_4-T6l1jyYqrYp4vqtYVCi2UhnQnQczFoA-dJTAQAa5zXZFV5ZlWJClnfdWxjyV__uFN9VTh_2qKFymaUWZdG-yI7CowyOAU2rKb0c-4crfVyQ5n8qquakVOHpSjnSsgwE0ToOASdq6qe4MlMTGufGC-1SOfPIlxiX_Z_X-ABcsQmShZcoOMc63R1YUxQxrkq_4MKXyfKKFIM8Ix8_7CmAl5Q3Z0W2cs3ldwqCPB60livJRVYxjVjQTSsBdGgFR8G3e-tsNVXBOPTKJTszxtW9wv6x3zeg-tMzkV6' \\\r\n--header 'x-amzn-shipping-business-id: AmazonShipping_IN'"
      },
      "response": []
    },
    {
      "name": "4. CancelShipment",
      "request": {
        "auth": {
          "type": "noauth"
        },
        "method": "PUT",
        "header": [
          {
            "key": "x-amz-access-token",
            "value": "{{x-amz-access-token}}",
            "description": "Pls insert the access token{x-amz-access-token}"
          },
          {
            "key": "x-amzn-shipping-business-id",
            "value": "AmazonShipping_IN",
            "description": "BUSINESSIDHERE"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "https://sellingpartnerapi-eu.amazon.com/shipping/v2/shipments/SHIPMENTIDHERE/cancel",
          "protocol": "https",
          "host": [
            "sellingpartnerapi-eu",
            "amazon",
            "com"
          ],
          "path": [
            "shipping",
            "v2",
            "shipments",
            "SHIPMENTIDHERE",
            "cancel"
          ]
        }
      },
      "response": []
    },
    {
      "name": "5. SubmitNdrFeedbackAPI",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "x-amz-access-token",
            "value": "{{x-amz-access-token}}"
          },
          {
            "key": "x-amzn-shipping-business-id",
            "value": "AmazonShipping_IN"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\r\n   \"trackingId\": \"342102182148\",\r\n   \"ndrAction\": \"REATTEMPT\",\r\n   \"ndrRequestData\": {\r\n      \"rescheduleDate\": \"2026-07-15T13:29:26.824Z\",\r\n      \"additionalAddressNotes\": \"Near circle\"\r\n   }\r\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "https://sellingpartnerapi-eu.amazon.com/shipping/v2/ndrFeedback",
          "protocol": "https",
          "host": [
            "sellingpartnerapi-eu",
            "amazon",
            "com"
          ],
          "path": [
            "shipping",
            "v2",
            "ndrFeedback"
          ]
        },
        "description": "Generated from cURL: curl --location 'https://sellingpartnerapi-eu.amazon.com/shipping/v2/ndrFeedback' \\\r\n--header 'x-amz-access-token;' \\\r\n--header 'x-amzn-shipping-business-id: AmazonShipping_IN' \\\r\n--header 'Content-Type: application/json' \\\r\n--data '{\r\n   \"trackingId\": \"342102182148\",\r\n   \"ndrAction\": \"REATTEMPT\",\r\n   \"ndrRequestData\": {\r\n      \"rescheduleDate\": \"2024-01-08T13:29:26.824Z\",\r\n      \"additionalAddressNotes\": \"Near circle\"\r\n   }\r\n}'"
      },
      "response": []
    },
    {
      "name": "6. SubmitClaims",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "x-amz-access-token",
            "value": "{{x-amz-access-token}}"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\r\n    \"trackingId\": \"370454842625\",\r\n    \"settlementType\": \"REFUND\",\r\n    \"claimReason\": \"LOST_IN_TRANSIT\",\r\n    \"claimProof\": [\r\n        \"https://test22.in\",\r\n        \"https://test22.com\"\r\n    ],\r\n    \"declaredValue\": {\r\n        \"unit\": \"INR\",\r\n        \"value\": 22,\r\n        \"isReplacementPackageSent\": \"false\"\r\n    }\r\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "https://sellingpartnerapi-eu.amazon.com/shipping/v2/claims",
          "protocol": "https",
          "host": [
            "sellingpartnerapi-eu",
            "amazon",
            "com"
          ],
          "path": [
            "shipping",
            "v2",
            "claims"
          ]
        },
        "description": "Generated from cURL: curl --location 'https://sellingpartnerapi-eu.amazon.com/shipping/v2/claims' \\\r\n--header 'Content-Type: application/json' \\\r\n--header 'x-amz-access-token: Atza|IwEBIAE9ScWvBmNQRHXtgqj93Q5rfcmU4XSZeTRgpChh5WasuMqmG1ccZtTmUE8Wi7aOBOAH4FsipZLXXo8oCtqLyS21eZQ9zNSfrOyXB2YnUrBoOX9U7OUYmNotPJo6biR0oFX9ePtlPEpWFFHVCWUfEcWil0wEsYB8D7sI-mwAmkVItkw2AarhX7Y2KXYhHYqJqcVPNZ4DLkV2W8AfWTK2svQHTfuKPVHB0yNtYzBZkGjN8qRqa450lct2Z0P9Fd2a09tHUZ3N-LJmCRLHEBX1e4kaP4m1jb_AUwewO6nA3NnZPEBTPU4kw4h0csQ88N4uHvxVEs6IKgDbcT2jlvOGMIxg' \\\r\n--data '{\r\n    \"trackingId\": \"1730274162557\",\r\n    \"settlementType\": \"REFUND\",\r\n    \"claimReason\": \"LOST_IN_TRANSIT\",\r\n    \"claimProof\": [\r\n        \"https://test22.in\",\r\n        \"https://test22.com\"\r\n    ],\r\n    \"declaredValue\": {\r\n        \"unit\": \"INR\",\r\n        \"value\": 22,\r\n        \"isReplacementPackageSent\": \"false\"\r\n    }\r\n}'"
      },
      "response": []
    }
  ]
}

Collection Related FAQ

Recommended tool for integration?

  • We recommend Postman for testing APIs since it has the support to make the calls with OAuth 2.0 and one of the popular tool among the API community.

What are the environments covered in this collection?

  • This collection can be used for both production and sandbox environments available for all the existing marketplaces using the appropriate Postman Environment files given.

What are the hosts used in the collections?

  • There are two host variables used, {{token-host}} and {{api-host}}and sample values for each marketplaces are available under the Postman Environment files.

Any other important note?

  • There is a folder under this collection using Deliver to Counter APIs, which is only available for OFF-Amazon volume and ready to use in AmazonShipping_UK market for now.
  • Please update the sample requests given as per your requirement and marketplace as instructed in the api reference document and during the technical discovery meetings.
  • submitNdrFeedback and submitClaims API is only applicable for AmazonShipping_IN marketplace[OFF Amazon]

Did this page help you?