GET 3dCartWebAPI/v1/Webhooks/Events


Get all Events

Request Information

URI Parameters

NameDescriptionTypeAdditional information
limit

Maximum number of items that can be returned

integer

Default value is 10

offset

Starting point for the return data

integer

Default value is 1

name

Event name

string

Default value is

countonly

Count the number of rows only

integer

Default value is 0

Body Parameters

None.


Sample Request



Response Information

Resource Description

Collection of Event
NameDescriptionTypeAdditional information
EventType

database reference = webhook_events.event_type

byte

None.

EventName

database reference = webhook_events.event_name

string

String length: inclusive between 0 and 100

Response Formats

application/json, text/json

Sample:
[
  {
    "EventType": 64,
    "EventName": "sample string 2"
  },
  {
    "EventType": 64,
    "EventName": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfEvent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <Event>
    <EventType>64</EventType>
    <EventName>sample string 2</EventName>
  </Event>
  <Event>
    <EventType>64</EventType>
    <EventName>sample string 2</EventName>
  </Event>
</ArrayOfEvent>