API Reference
- Switchboard API
- POSTPreview the output of a transformer.
- boards
- hubs
- data-mappings
- apps
- operations
- schemas
- GETGet organisations schemas
- POSTPost organisations schemas
- GETGet organisations schemas info
- DELDelete organisations schemas
- POSTPost organisations schemas clone
- POSTPost organisations schemas publish
- GETGet organisations schemas operations
- POSTPost organisations schemas operations
- PUTPut organisations schemas operations
- DELDelete organisations schemas operations
- GETGet organisations schemas components
- POSTPost organisations schemas components
- PUTPut organisations schemas components
- DELDelete organisations schemas components
- POSTPost organisations schemas delete components
- POSTPost organisations schemas operation builder
- PUTPut organisations schemas import
- POSTPost organisations schema utils import
- GET
- GETGet organisations schema utils signed url
- POSTPost organisations schema utils source url
- POSTPost organisations schema utils info
- connections
- credentials
- GETGet organisations signed url
- POST
schemas
Get organisations schemas
Retrieves all Schemas owned by this organisation as a paginated response.
GET
/
organisations
/
{organisationId}
/
schemas
curl --request GET \
--url https://platform.versori.com/api/switchboard/v1alpha1/organisations/{organisationId}/schemas \
--header 'Authorization: <api-key>'
{
"totalCount": 123,
"next": "<string>",
"prev": "<string>",
"items": [
{
"id": "<string>",
"type": "<string>",
"version": "<string>",
"sourceUrl": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"deletedAt": "2023-11-07T05:31:56Z"
}
]
}
Authorizations
Path Parameters
Response
200
application/json
A paginated result of Schemas
Type denotes the type of schema the corresponding App is backed by. Currently the only supported value is "openapi", but other types such as "soap", "graphql" and "grpc" are on the roadmap.
Version denotes the version of the schema specification. This property is contextual based on the schema
type, for example openapi schemas will contain the OpenAPI specification version (currently only 3.0.x is
supported), but grpc
APIs could be "proto2" or "proto3".
URL is the private address for accessing the schema. This is not guaranteed to be publicly accessible and could be a non-HTTP protocol (i.e. gs:// or s3://)
curl --request GET \
--url https://platform.versori.com/api/switchboard/v1alpha1/organisations/{organisationId}/schemas \
--header 'Authorization: <api-key>'
{
"totalCount": 123,
"next": "<string>",
"prev": "<string>",
"items": [
{
"id": "<string>",
"type": "<string>",
"version": "<string>",
"sourceUrl": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"deletedAt": "2023-11-07T05:31:56Z"
}
]
}