TAG LINE
TAG LINE
SMALL TITLE
identity READ-ONLY | "identity": 25 Type: Number This is the unique numeric identifier for the EventSubscription |
name | "name": "Hello World" Type: String |
description | "description": "Hello World" Type: String |
isActive | "isActive": true Type: Boolean |
eventRegistrationId | "eventRegistrationId": 16 Type: Number Unique identifier for the associated EventRegistration object. |
eventRegistrationName | "eventRegistrationName": "Sample Name" Type: String The name of the object associated with the eventRegistrationId property. |
eventBindingActionId | "eventBindingActionId": 16 Type: Number Unique identifier for the associated EventBindingAction object. |
eventBindingActionName | "eventBindingActionName": "Sample Name" Type: String The name of the object associated with the eventBindingActionId property. |
accessTypeId | "accessTypeId": 26 Type: Number Unique identifier for the associated AccessType object. |
accessTypeName | "accessTypeName": "Sample Name" Type: String The name of the object associated with the accessTypeId property. |
createdByUserId | "createdByUserId": 25 Type: Number Unique identifier for the associated User object. |
createdByUserName | "createdByUserName": "Sample Name" Type: String The name of the object associated with the createdByUserId property. |
updatedByUserId | "updatedByUserId": 22 Type: Number Unique identifier for the associated User object. |
updatedByUserName | "updatedByUserName": "Sample Name" Type: String The name of the object associated with the updatedByUserId property. |
created READ-ONLY | "created": "2021-04-26T15:25:27.587Z" Type: Date This is a system generated date when the record was created. Date and time values are specified in the ISO 8601 format. |
The PATCH verb allows you to update an object. Just like a put, you only need to supply the fields that will be updated in the payload. However, a patch allows you to update many objects at once.
PATCH operations can be used as a standard API call. Below you will find the child objects that can be updated as part of PATCH operations for the EventSubscription object.
Standard PATCH objects:
DataFlow PATCH objects:
DELETE | EventSubscription/Email/{id} |
Delete an instance of the EventSubscription object. Upon successful delete, this API will return a record of all of the related objects deleted with this operation. The specifics on which objects have been deleted will depend on which related objects have been populated in the system. | |
{id} | Unique identifier for the EventSubscription object. |
Delete an instance of the EventSubscription object. DELETE EventSubscription/Email/{id} HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "type": "delete", "results": { "totalCount": 4, "items": [ { "identity": 1, "action": "deleted", "dtoTypeKey": "eventSubscription" }, { "lhsId": 2, "rhsId": 2, "action": "detached", "dtoTypeKey": "sampleObjectConnector" }, { "foreignKeyIdentity": 2, "action": "deleted", "dtoTypeKey": "sampleObject" } ] } } |
DELETE | EventSubscription/Webhook/{id} |
Delete an instance of the EventSubscription object. Upon successful delete, this API will return a record of all of the related objects deleted with this operation. The specifics on which objects have been deleted will depend on which related objects have been populated in the system. | |
{id} | Unique identifier for the EventSubscription object. |
Delete an instance of the EventSubscription object. DELETE EventSubscription/Webhook/{id} HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "type": "delete", "results": { "totalCount": 4, "items": [ { "identity": 1, "action": "deleted", "dtoTypeKey": "eventSubscription" }, { "lhsId": 2, "rhsId": 2, "action": "detached", "dtoTypeKey": "sampleObjectConnector" }, { "foreignKeyIdentity": 2, "action": "deleted", "dtoTypeKey": "sampleObject" } ] } } |
GET | EventSubscription/Email/ |
Retrieve all of the EventSubscription objects. | |
Retrieve all of the EventSubscription objects. GET EventSubscription/Email/ HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "totalCount": 1, "items": [ { "identity": 1, "name": "Sample Text Data", "description": "Sample Text Data", "isActive": true, "eventRegistrationId": 9, "eventRegistrationName": "Sample Text Data", "eventBindingActionId": 23, "eventBindingActionName": "Sample Text Data", "accessTypeId": 0, "accessTypeName": "Sample Text Data", "createdByUserId": 15, "createdByUserName": "Sample Text Data", "updatedByUserId": 10, "updatedByUserName": "Sample Text Data", "created": "2021-04-26T15:25:27.587Z" } ] } |
GET | EventSubscription/Webhook/ |
Retrieve all of the EventSubscription objects. | |
Retrieve all of the EventSubscription objects. GET EventSubscription/Webhook/ HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "totalCount": 1, "items": [ { "identity": 1, "name": "Sample Text Data", "description": "Sample Text Data", "isActive": true, "eventRegistrationId": 15, "eventRegistrationName": "Sample Text Data", "eventBindingActionId": 19, "eventBindingActionName": "Sample Text Data", "accessTypeId": 8, "accessTypeName": "Sample Text Data", "createdByUserId": 15, "createdByUserName": "Sample Text Data", "updatedByUserId": 23, "updatedByUserName": "Sample Text Data", "created": "2021-04-26T15:25:27.587Z" } ] } |
PATCH | EventSubscription/Email/{id} |
Update or Add the EventSubscription object and optionally make changes to any child objects. Patch end points allow for adding/updating multiple related entities and the results of those changes will be reported in the response JSON payload in the items array. | |
{id} | Unique identifier for the EventSubscription object. |
Update or Add the EventSubscription object and optionally make changes to any child objects. PATCH EventSubscription/Email/{id} { "details": {}, "eventSubscriptions": { "items": [ { "patchType": "create", "patchClientId": 1, "name": "Sample Text Data", "description": "Sample Text Data", "isActive": true, "eventRegistrationId": 11, "eventBindingActionId": 5, "accessTypeId": 3, "createdByUserId": 16, "updatedByUserId": 23 } ] } } HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "type": "patch", "results": { "totalCount": 1, "items": [ { "identity": 1, "action": "created", "dtoTypeKey": "eventSubscription", "instance": { "identity": 1, "name": "Sample Text Data", "description": "Sample Text Data", "isActive": true, "eventRegistrationId": 21, "eventRegistrationName": "Sample Text Data", "eventBindingActionId": 5, "eventBindingActionName": "Sample Text Data", "accessTypeId": 22, "accessTypeName": "Sample Text Data", "createdByUserId": 3, "createdByUserName": "Sample Text Data", "updatedByUserId": 19, "updatedByUserName": "Sample Text Data", "created": "2021-04-26T15:25:27.587Z" } } ] } } |
PATCH | EventSubscription/Webhook/{id} |
Update or Add the EventSubscription object and optionally make changes to any child objects. Patch end points allow for adding/updating multiple related entities and the results of those changes will be reported in the response JSON payload in the items array. | |
{id} | Unique identifier for the EventSubscription object. |
Update or Add the EventSubscription object and optionally make changes to any child objects. PATCH EventSubscription/Webhook/{id} { "details": {}, "eventSubscriptions": { "items": [ { "patchType": "create", "patchClientId": 1, "name": "Sample Text Data", "description": "Sample Text Data", "isActive": true, "eventRegistrationId": 1, "eventBindingActionId": 0, "accessTypeId": 14, "createdByUserId": 4, "updatedByUserId": 14 } ] } } HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "type": "patch", "results": { "totalCount": 1, "items": [ { "identity": 1, "action": "created", "dtoTypeKey": "eventSubscription", "instance": { "identity": 1, "name": "Sample Text Data", "description": "Sample Text Data", "isActive": true, "eventRegistrationId": 4, "eventRegistrationName": "Sample Text Data", "eventBindingActionId": 2, "eventBindingActionName": "Sample Text Data", "accessTypeId": 0, "accessTypeName": "Sample Text Data", "createdByUserId": 24, "createdByUserName": "Sample Text Data", "updatedByUserId": 13, "updatedByUserName": "Sample Text Data", "created": "2021-04-26T15:25:27.587Z" } } ] } } |
POST | EventSubscription/Email/ |
Create a new instance of the EventSubscription object. | |
Create a new instance of the EventSubscription object. POST EventSubscription/Email/ { "name": "Sample Text Data", "description": "Sample Text Data", "isActive": true, "eventRegistrationId": 1, "eventBindingActionId": 27, "accessTypeId": 15, "createdByUserId": 18, "updatedByUserId": 19 } HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "type": "create", "results": { "totalCount": 1, "items": [ { "identity": 1, "name": "Sample Text Data", "description": "Sample Text Data", "isActive": true, "eventRegistrationId": 5, "eventRegistrationName": "Sample Text Data", "eventBindingActionId": 10, "eventBindingActionName": "Sample Text Data", "accessTypeId": 23, "accessTypeName": "Sample Text Data", "createdByUserId": 10, "createdByUserName": "Sample Text Data", "updatedByUserId": 13, "updatedByUserName": "Sample Text Data", "created": "2021-04-26T15:25:27.587Z" } ] } } |
POST | EventSubscription/Webhook/ |
Create a new instance of the EventSubscription object. | |
Create a new instance of the EventSubscription object. POST EventSubscription/Webhook/ { "name": "Sample Text Data", "description": "Sample Text Data", "isActive": true, "eventRegistrationId": 14, "eventBindingActionId": 21, "accessTypeId": 11, "createdByUserId": 17, "updatedByUserId": 14 } HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "type": "create", "results": { "totalCount": 1, "items": [ { "identity": 1, "name": "Sample Text Data", "description": "Sample Text Data", "isActive": true, "eventRegistrationId": 15, "eventRegistrationName": "Sample Text Data", "eventBindingActionId": 15, "eventBindingActionName": "Sample Text Data", "accessTypeId": 17, "accessTypeName": "Sample Text Data", "createdByUserId": 20, "createdByUserName": "Sample Text Data", "updatedByUserId": 25, "updatedByUserName": "Sample Text Data", "created": "2021-04-26T15:25:27.587Z" } ] } } |
PUT | EventSubscription/Email/{id} |
Update an existing instance of the EventSubscription object. | |
Update an existing instance of the EventSubscription object. PUT EventSubscription/Email/{id} { "identity": 1, "name": "Sample Text Data", "description": "Sample Text Data", "isActive": true, "eventRegistrationId": 4, "eventBindingActionId": 23, "accessTypeId": 5, "createdByUserId": 4, "updatedByUserId": 18 } HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "type": "update", "results": { "totalCount": 1, "items": [ { "identity": 1, "name": "Sample Text Data", "description": "Sample Text Data", "isActive": true, "eventRegistrationId": 14, "eventRegistrationName": "Sample Text Data", "eventBindingActionId": 5, "eventBindingActionName": "Sample Text Data", "accessTypeId": 2, "accessTypeName": "Sample Text Data", "createdByUserId": 13, "createdByUserName": "Sample Text Data", "updatedByUserId": 7, "updatedByUserName": "Sample Text Data", "created": "2021-04-26T15:25:27.587Z" } ] } } |
PUT | EventSubscription/Webhook/{id} |
Update an existing instance of the EventSubscription object. | |
Update an existing instance of the EventSubscription object. PUT EventSubscription/Webhook/{id} { "identity": 1, "name": "Sample Text Data", "description": "Sample Text Data", "isActive": true, "eventRegistrationId": 0, "eventBindingActionId": 20, "accessTypeId": 16, "createdByUserId": 13, "updatedByUserId": 20 } HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "type": "update", "results": { "totalCount": 1, "items": [ { "identity": 1, "name": "Sample Text Data", "description": "Sample Text Data", "isActive": true, "eventRegistrationId": 16, "eventRegistrationName": "Sample Text Data", "eventBindingActionId": 15, "eventBindingActionName": "Sample Text Data", "accessTypeId": 16, "accessTypeName": "Sample Text Data", "createdByUserId": 4, "createdByUserName": "Sample Text Data", "updatedByUserId": 16, "updatedByUserName": "Sample Text Data", "created": "2021-04-26T15:25:27.587Z" } ] } } |