Webhook Filter
Webhook Filter
With this service, you can list the webhook methods you have previously created.
- Requests to be sent to integration services must be authorized with the basic authentication method "basic authentication".
- SellerId, API KEY and API SECRET KEY information used for Basic Authentication must be obtained from the "Integration Information" page in the "My Account Information" section of the seller panel.
GET getWebhook
Sample Service Response
[
{
id: "5297c986-6e09-4615-9f16-0deff65a0890",
createdDate: 1733317686667,
lastModifiedDate: 1734010262454,
url: "https://testwebhook1.com",
username: "test1",
authenticationType: "BASIC_AUTHENTICATION",
status: "PASSIVE",
subscribedStatuses: [
"CREATED",
"CANCELLED",
"SHIPPED",
"DELIVERED",
"UNPACKED",
],
},
{
id: "4f9429b9-ef13-4d7c-94cf-9eee3ce7273a",
createdDate: 1733917501531,
lastModifiedDate: 1733920106237,
url: "https://testwebhook2.com",
username: "test2",
authenticationType: "API_KEY",
status: "PASSIVE",
subscribedStatuses: null,
},
{
id: "2ba10e5d-5176-416b-9770-5d9c85a81a5e",
createdDate: 1734087820902,
lastModifiedDate: null,
url: "https://testwebhook3.com",
username: "test3",
authenticationType: "API_KEY",
status: "ACTIVE",
subscribedStatuses: ["CREATED", "PICKING"],
},
];Response Parameters
| Değer | Açıklama | Tip |
|---|---|---|
| createdDate | Date the webhook request was created | timestamp GMT +3 |
| id | ID of the Webhook | string |
| lastModifiedDate | Date the webhook request was last updated | timestamp GMT +3 |
| url | Webhook Service URL Information | string |
| username | Username to be used for Basic Authentication | string |
| authenticationType | Could be "BASIC_AUTHENTICATION" or "API_KEY" | string |
| status | Could be "ACTIVE" or "PASSIVE" | string |
| subscribedStatuses | Statu list for the order information | array |
Updated 11 days ago