Webhook Update
Webhook Update
With this service, you can update 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.
PUT getWebhook
Input Parameters
| Field | Definition | Type |
|---|---|---|
| url | Webhook Service URL Information | string |
| username | Username to be used for Basic Authentication | string |
| password | The password to be used for Basic Authentication | string |
| authenticationType | Could be "BASIC_AUTHENTICATION" or "API_KEY" | string |
| apiKey | apiKey information which will be used for Authorization | string |
| subscribedStatuses | Statu list for the order information | array |
Sample Service Request
{
"url": "https://testwebhook.com",
"username": "user",
"password": "password",
"authenticationType": "API_KEY",
"apiKey": "123456",
"subscribedStatuses": ["CREATED", "PICKING"]
}Sample Service Response
200 OKUpdated 11 days ago