Zippyy REST APIs
  1. Warehouse
Zippyy REST APIs
  • Introduction
  • Authentication API
    • Generate Token
      POST
  • Couriers
    • Check Courier Serviceability
      GET
    • Quick Quote
      POST
    • Forward Shipment (V2)
      POST
    • Forward Shipment
      POST
  • Shipments
    • Get Details of Specific Shipment
      GET
    • Generate Label
      GET
    • Generate Label Url
      GET
    • Cancel a Shipment
      PUT
    • Generate Invoice
      GET
  • Tracking
    • Get Tracking Details
      GET
    • Webhook
      POST
  • NDR
    • Action NDR
      PUT
  • Warehouse
    • Get Warehouse
      GET
    • List of Warehouse details
      GET
    • Create new Warehouse
      POST
    • Update existing warehouse properties
      PUT
  1. Warehouse

Create new Warehouse

POST
/v1/external/warehouse
Create new warehouse

Request

Body Params application/jsonRequired

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/v1/external/warehouse' \
--header 'Content-Type: application/json' \
--data-raw '{
  "address": {
    "company": "Godash",
    "emailAddress": "koushik@godash.ai",
    "phoneNumber": "9000755025",
    "locationName": "koushiktest1",
    "locationDetails": {
      "addressLine1": "Arbour complex Tellapur Rd",
      "addressLine2": "Dist Nadia",
      "postalCode": "500032",
      "city": "K.V.Rangareddy",
      "state": "Telangana",
      "country": "India",
      "countryCode": "IN",
      "latitude": "",
      "longitude": ""
    },
    "firstName": "Test",
    "lastName": "User"
  },
  "residential": false,
  "category": "sender"
}'
Response Response Example
[
    {
        "category": "sender",
        "summary": [
            {
                "id": "dea09ac3-a954-4811-9fbd-36c962f04ad7",
                "address": {
                    "firstName": "Test",
                    "lastName": "User",
                    "company": "Godash",
                    "emailAddress": "koushik@godash.ai",
                    "phoneNumber": "9000000000",
                    "locationName": "koushiktest1",
                    "addressType": null,
                    "locationDetails": {
                        "addressLine1": "Arbour Complex Tellapur Rd",
                        "addressLine2": "",
                        "postalCode": "500032",
                        "city": "K.V.Rangareddy",
                        "state": "Telangana",
                        "country": "India",
                        "countryCode": "IN",
                        "latitude": "",
                        "longitude": ""
                    }
                },
                "active": true,
                "payload_identifier": "rum6PZ1mJgLEfz66JRQL3OXEeqaj3yLcnG+RhtAsMBE=",
                "metadata": {
                    "residential": false
                },
                "default": false
            }
        ]
    }
]
Modified at 2026-01-19 10:15:15
Previous
List of Warehouse details
Next
Update existing warehouse properties
Built with