GET api/Webhook/PayloadData

API for list of the webhook payload JSON detais.

Request Information

URI Parameters

None.

Body Parameters

None.


Response Information

Resource Description

APIResponseBaseOfListOfWebhookDataModel
NameDescriptionTypeAdditional information
StatusCode

integer

None.

IsSuccess

boolean

None.

Message

string

None.

Result

Collection of WebhookDataModel

None.

Response Formats

application/json, text/json

Sample:
{
  "StatusCode": 1,
  "IsSuccess": true,
  "Message": "sample string 3",
  "Result": [
    {
      "id": 1,
      "event": "sample string 2",
      "payload": {},
      "createdDate": "2024-07-02T01:50:33.7166533+00:00"
    },
    {
      "id": 1,
      "event": "sample string 2",
      "payload": {},
      "createdDate": "2024-07-02T01:50:33.7166533+00:00"
    }
  ]
}

application/xml, text/xml

Sample:
<APIResponseBaseOfArrayOfWebhookDataModel1mpfSM9h xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessObject.Other">
  <IsSuccess>true</IsSuccess>
  <Message>sample string 3</Message>
  <Result xmlns:d2p1="http://schemas.datacontract.org/2004/07/BusinessObject.ViewModel">
    <d2p1:WebhookDataModel>
      <d2p1:createdDate>2024-07-02T01:50:33.7166533+00:00</d2p1:createdDate>
      <d2p1:event>sample string 2</d2p1:event>
      <d2p1:id>1</d2p1:id>
      <d2p1:payload />
    </d2p1:WebhookDataModel>
    <d2p1:WebhookDataModel>
      <d2p1:createdDate>2024-07-02T01:50:33.7166533+00:00</d2p1:createdDate>
      <d2p1:event>sample string 2</d2p1:event>
      <d2p1:id>1</d2p1:id>
      <d2p1:payload />
    </d2p1:WebhookDataModel>
  </Result>
  <StatusCode>1</StatusCode>
</APIResponseBaseOfArrayOfWebhookDataModel1mpfSM9h>