Eventing (Core)

Endpoints to create, update and read subscriptions.

List subscriptions

get

This part of the API is in Beta status. For details please check the api-release-life-cycle documentationarrow-up-right.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
startAfterIdstringOptional

all entities after given Id

sizeintegerOptional

number of entities to show

Default: 25
Responses
chevron-right
200

All subscriptions.

application/json

Subscriptions

totalintegerOptional

Total number of found entities for this query

Example: 42
get
/api/subscriptions

Create subscription

post

This part of the API is in Beta status. For details please check the api-release-life-cycle documentationarrow-up-right. Add new Subscription. Please note: Currently it is only possible to add max. five subscriptions per event.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body

SubscriptionForCreation

callbackUrlstringOptionalDeprecated

This part of the API is deprecated. For details please check the api-release-life-cycle documentation.

Deprecated: Use new 'target' object instead.

eventstringRequired

Name of the event in the fulfillmenttools platform.

namestringRequired

Name of the event, this is freely selectable.

targetany ofOptional
or
or
Responses
post
/api/subscriptions

Delete subscription

delete

This part of the API is in Beta status. For details please check the api-release-life-cycle documentationarrow-up-right.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
subscriptionIdstringRequired

ID of the subscription you want to delete

Responses
chevron-right
200

Subscription is successfully deleted.

application/json

Subscription

delete
/api/subscriptions/{subscriptionId}

List supported events

get

This part of the API is in Beta status. For details please check the api-release-life-cycle documentationarrow-up-right.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
chevron-right
200

All supported events.

application/json

SupportedEvents

get
/api/supportedevents

Last updated