Stacks (Operations)

Endpoints to operate with stacks.

Get all Stacks respecting the given filter

get

This part of the API is in Beta status. For details please check the api-release-life-cycle documentationarrow-up-right. Get all Stacks respecting the given filter

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

entity to start after

sizeintegerOptional

number of entities to show

Default: 25
facilityRefsstring[]Optional

facilities to filter the results

Responses
chevron-right
200

Entities were found & you were allowed to access it. The result is in the body.

application/json

StackResponse

totalinteger · int64Required

Total number of stacks for the given filter

Example: 42
get
/api/stacks

Create stack

post

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

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

StackForCreation

facilityRefsstring[] · max: 50Required

Linked Facilities through reference

processRefsstring[] · max: 50Required

Linked Processes through reference

Responses
post
/api/stacks

Get stack

get

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

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

Entity was found & you were allowed to access it. The result is in the body.

application/json

Stack

createdstring · date-timeRequired

The date this entity was created at the platform. This value is generated by the service.

Example: 2020-02-03T08:45:51.525Z
facilityRefsstring[] · max: 50Required

Linked Facilities through reference

idstringRequired

Unique identifier of the Stack

lastModifiedstring · date-timeRequired

The date this entity was modified last. This value is generated by the service.

Example: 2020-02-03T09:45:51.525Z
processRefsstring[] · max: 50Required

Linked Processes through reference

versioninteger · int64Required

The version of the document to be used in optimistic locking mechanisms.

Example: 42
get
/api/stacks/{stackId}

Last updated