4. Webhook Update

With this service, you can update the webhook methods you have previously created.

  • Use "storeFrontCode" as the Header Parameter.
  • 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

FieldDefinitionType
urlWebhook Service URL Informationstring
usernameUsername to be used for Basic Authenticationstring
passwordThe password to be used for Basic Authenticationstring
authenticationTypeCould be "BASIC_AUTHENTICATION" or "API_KEY"string
apiKeyapiKey information which will be used for Authorizationstring
subscribedStatusesStatu list for the order informationarray

Sample Service Request

{
    "url": "https://testwebhook.com",
    "username": "user",
    "password": "password",
    "authenticationType": "API_KEY",
    "apiKey": "123456",
    "subscribedStatuses": ["CREATED", "PICKING"]
 }

Sample Service Response

200 OK