FastPOD
  1. Webhook
FastPOD
  • Getting Started
  • Orders
    • List Orders
      GET
    • Get Order
      GET
    • Create Order
      POST
    • Cancel Order
      POST
    • Estimate Order Price
      POST
    • Estimate Item Price
      POST
    • Update Order
      PUT
    • Update Status
      PUT
  • Catalog
    • List Catalogs
      GET
  • Webhook
    • List Webhooks
      GET
    • Subscribe
      POST
    • Unsubcribe
      DELETE
  1. Webhook

List Webhooks

GET
/v1/webhooks
Lists all webhook subscriptions owned by your application.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params
Accept
string 
required
Example:
application/json

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 --request GET 'https://api-v2.fastpod.net/v1/webhooks' \
--header 'Accept: application/json'

Responses

🟢200FetchWebhooks
application/json
Body
array of:
id
integer 
required
store_id
integer 
required
url
string 
required
event
string 
required
created_at
string 
required
updated_at
string 
required
Example
[
  {
    "id": 100,
    "store_id": 10000,
    "url": "url",
    "event": "order_status",
    "created_at": "2022-07-08T12:50:00.000000Z",
    "updated_at": "2022-07-08T12:50:00.000000Z"
  },
  {
    "id": 101,
    "store_id": 10000,
    "url": "url",
    "event": "shipment_status",
    "created_at": "2022-07-08T08:01:15.000000Z",
    "updated_at": "2022-07-08T08:01:15.000000Z"
  },
  {
    "id": 102,
    "store_id": 10000,
    "url": "url",
    "event": "stock_status",
    "created_at": "2022-07-08T08:01:15.000000Z",
    "updated_at": "2022-07-08T08:01:15.000000Z"
  }
]
Modified at 2023-12-08 04:06:24
Previous
Webhook
Next
Subscribe
Built with