Hey Couriers
  1. APIs for Pickup Point
Hey Couriers
  • Hey Couriers API Documentation
  • Hey Courier
    • APIs for Packages
      • APIs for Archive Packages
        • Restore The Package
        • Archive The Package
        • Get The Archived Package List
      • Get The Package List
      • Create Package
      • Retrieve Particular Package
      • Bulk Package Upload Using Excel
      • Bulk Package Upload Using CSV
      • Download CSV Of Selected Packages
      • Download CSV Of Company Packages of Given Status
      • Get The POD Report of Package
      • Update Package
    • APIs for Pickup Point
      • Archive
        • Get Archived Pickup Point Manager
        • Archive The Pickup Point Manager
        • Restore The Pick Point Manager
      • Get Pickup Point Manager List
        GET
      • Download QR Code of Pickup Point Manager
        POST
      • Retrieve Particular Pickup Point Manager Detail
        GET
      • Update The Pickup Point Manager
        PATCH
      • Status Change Of Pickup Point Manager
        PATCH
      • Create Pickup Point Manager
        POST
    • Company Pickup Package
      • Company Pickup Package Bulk Upload
      • Company Pickup Package Excel Upload
      • Company Pickup Package Create
      • Company Pickup Package Update
      • Login Company Pickup Package List
  • Package Tracking (To Track Package)
    GET
  1. APIs for Pickup Point

Status Change Of Pickup Point Manager

Developing
PATCH
{{base_url}}pickup-point-status-change/3/
This API Endpoint helps to change the pickup point manager status. There are three status : Pending, Active and Inactive

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params
X-WebHook-Secret
string 
optional
API Key To Access this API
Example:
r3WExcdfdfwe
Body Params application/json
object {0}
Example
{
    "status": "Inactive"
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request PATCH '{{base_url}}pickup-point-status-change/3/' \
--header 'X-WebHook-Secret: r3WExcdfdfwe' \
--header 'Content-Type: application/json' \
--data-raw '{
    "status": "Inactive"
}'

Responses

🟢200OK
application/json
Body
count
integer 
required
next
null 
required
previous
null 
required
results
object 
required
success
boolean 
required
data
array[string]
required
Example
{
    "count": 0,
    "next": null,
    "previous": null,
    "results": {
        "success": true,
        "data": [
            "string"
        ]
    }
}
Previous
Update The Pickup Point Manager
Next
Create Pickup Point Manager
Built with