POST
/
organisations
/
{organisationId}
/
apps
curl --request POST \
  --url https://platform.versori.com/api/switchboard/v1alpha1/organisations/{organisationId}/apps \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "public": true,
  "server": {
    "name": "<string>",
    "url": "<string>"
  },
  "authConfigs": [
    {
      "type": "<string>",
      "data": {
        "discoveryUrl": "<string>",
        "clientId": "<string>",
        "clientSecret": "<string>",
        "scopes": {}
      }
    }
  ],
  "imageUrl": "<string>",
  "schemaId": "<string>"
}'
{
  "id": "<string>",
  "orgId": "<string>",
  "name": "<string>",
  "public": true,
  "server": {
    "name": "<string>",
    "url": "<string>"
  },
  "schemaMetadata": {
    "type": "<string>",
    "version": "<string>",
    "url": "<string>"
  },
  "supportedAuthConfigs": [
    {
      "type": "<string>",
      "isValid": true,
      "data": {
        "discoveryUrl": "<string>",
        "clientId": "<string>",
        "clientSecret": "<string>",
        "scopes": {}
      }
    }
  ],
  "imageUrl": "<string>",
  "schema": {
    "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"
  },
  "schemaId": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "deletedAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Path Parameters

organisationId
string
required

Body

application/json
Payload to create a new App.

The body is of type object.

Response

200
application/json
A single App result

The response is of type object.