operations
Get organisations apps operations schema
Retrieve the input and output schema for a given operation belonging to an app.
GET
/
organisations
/
{organisationId}
/
apps
/
{appId}
/
operations
/
{operationId}
/
schema
Authorizations
Authorization
string
headerrequiredPath Parameters
organisationId
string
requiredappId
string
requiredoperationId
string
requiredResponse
200 - application/json
id
string
The ID of the operation, for OpenAPI this will be the operationId
field if set, otherwise the request's
type and path.
method
enum<string>
The http method that the operation uses.
Available options:
GET
, PUT
, POST
, DELETE
, OPTIONS
, HEAD
, PATCH
, TRACE
, SQL
description
string
A human-friendly description of what this operation does.
name
string
A human-friendly name based on the operation ID.
schemaId
string
requiredThe ID of the schema this object belongs to.
path
string
The path used to call the operation.
request
object
request.parameters
object[]
request.body
object
The request body of the operation.
response
object
The response body of the operation.
callbacks
object
The callbacks of the operation.
components
object
An optional map of components the operation refers to indexed by ref.