Presentations Endpoints (2022/06)
/Presentations/Count/
GET
Retrieves the number of presentations on the network matching the specified filter criteria. If no filter is included, this call returns the total number of presentations on the network.
Parameters
: An expression for filtering search results.
filter[string]
Response Body
The presentation count is returned as an integer value.
/Presentations/Operations/
GET
Returns the operational permissions granted to roles for specific business operations
Response Body
Returns the Business Operations Entity
/Presentations/{id:int}/
GET
Returns the presentation instance with the specified id.
Parameters
A unique identifier for the presentation instance[int]
id:
Response Body
Returns the Presentation Entity
PUT
Modifies the specified presentation instance.
Parameters
A unique identifier for the presentation instance[int]
id:
Request Body
Response Body
On success this method returns a status code 2XX, on failure it returns a status code of 5XX.
DELETE
Removes the specified presentation from the network.
Parameters
A unique identifier for the presentation instance[int]
id:
Response Body
On success this method returns a status code 2XX, on failure it returns code 400 with an error message.
/Presentations/{name}/
GET
Returns the presentation instance with the specified name.
Parameters
The name of the presentation instance[string]
name:
Response Body
Returns the Presentation Entity
PUT
Modifies the specified presentation instance.
Parameters
The name of the presentation instance[string] name
:
Request Body
Response Body
On success this method returns a status code 2XX, on failure it returns a status code of 5XX.
DELETE
Removes the specified presentation from the network.
Parameters
The name of the presentation instance[string] name
:
Response Body
On success this method returns a status code 2XX, on failure it returns code 400 with an error message.
/Presentations/{id:int}/Permissions/
GET
Includes object permissions for a given presentation instance.
Parameters
A unique identifier for the presentation instance[int]
id:
Response Body
Returns the Permission Entity
POST
Adds permissions for the specified presentation instance.
Parameters
A unique identifier for the presentation instance[int]
id:
Request Body
Response Body
On success this method returns a status code 2XX, on failure it returns a status code of 5XX.
DELETE
Removes permissions for the specified presentation instance.
Parameters
A unique identifier for the presentation instance[int]
id:
Request Body
Response Body
On success this method returns a status code 2XX, on failure it returns a status code of 5XX.
/Presentations/{name}/Permissions/
GET
Includes object permissions for a given presentation instance.
Parameters
The name of the presentation instance[string] name
:
Response Body
Returns the Permission Entity
POST
Adds permissions for the specified presentation instance.
Parameters
The name of the presentation instance[string] name
:
Request Body
Response Body
On success this method returns a status code 2XX, on failure it returns a status code of 5XX.
DELETE
Removes permissions for the specified presentation instance.
Parameters
The name of the presentation instance[string]
name:
Request Body
Response Body
On success this method returns a status code 2XX, on failure it returns a status code of 5XX.