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

Update existing warehouse properties

PUT
/v1/external/warehouse/{id}
Update attributes of existing warehouse address

Request

Path Params

Header Params

Body Params application/jsonRequired

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT '/v1/external/warehouse/' \
--header 'Authorization;' \
--header 'x-api-version;' \
--header 'Content-Type: application/json' \
--data-raw '{
  "address": {
    "company": "Godash",
    "emailAddress": "support@godash.ai",
    "phoneNumber": "9000000000",
    "locationName": "baselocation",
    "locationDetails": {
      "addressLine1": "Arbour Complex 2 Tellapur Rd",
      "addressLine2": "Dist Nadia",
      "postalCode": "500032",
      "city": "K.V.Rangareddy",
      "state": "Telangana",
      "country": "India",
      "countryCode": "IN",
      "latitude": "",
      "longitude": ""
    },
    "firstName": "Koushik",
    "lastName": "MONDAL"
  },
  "residential": false
}'
Response Response Example
[
  {
    "category": "sender",
    "summary": [
      {
        "id": "dea09ac3-a954-4811-9fbd-36c962f04ad7",
        "address": {
          "firstName": "Koushik",
          "lastName": "MONDAL",
          "company": "Godash3",
          "emailAddress": "koushik@godash.ai",
          "phoneNumber": "9000755025",
          "locationName": "koushiktest2",
          "addressType": null,
          "locationDetails": {
            "entered_address": null,
            "building": null,
            "addressLine1": "Bonsai ArbourTellapur Rd",
            "addressLine2": "Dist Nadia",
            "postalCode": "500032",
            "city": "K.V.Rangareddy",
            "state": "Telangana",
            "country": "India",
            "countryCode": "IN",
            "latitude": "",
            "longitude": ""
          }
        },
        "active": true,
        "verified": false,
        "payload_identifier": "rum6PZ1mJgLEfz66JRQL3OXEeqaj3yLcnG+RhtAsMBE=",
        "metadata": {
          "residential": false
        },
        "default": false
      }
    ]
  }
]
Modified at 2026-01-19 10:15:23
Previous
Create new Warehouse
Built with