Skip to main content

Accounts

The Accounts service is thought to be owning the user, resource group and company information.

Fractal Accounts (v1)

Download OpenAPI specification:Download

Fractal Accounts description

Accounts

Create an account

Authorizations:
Bearer
Request Body schema: application/json
username
string or null
password
string or null

Responses

Request samples

Content type
application/json
{
  • "username": "string",
  • "password": "string"
}

Response samples

Content type
application/json
{
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "name": "string",
  • "surname": "string",
  • "email": "string",
  • "avatarUrl": "string",
  • "phoneNumber": "string",
  • "status": "Registered",
  • "challenge": "string",
  • "forcePasswordChange": true,
  • "serviceAccountId": "string",
  • "subscriptionId": "d079718b-ff63-45dd-947b-4950c023750f",
  • "createdAt": "2019-08-24T14:15:22Z",
  • "updatedAt": "2019-08-24T14:15:22Z"
}

Create an account

Authorizations:
Bearer
Request Body schema: application/json
email
string or null

Responses

Request samples

Content type
application/json
{
  • "email": "string"
}

Response samples

Content type
application/json
{
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "name": "string",
  • "surname": "string",
  • "email": "string",
  • "avatarUrl": "string",
  • "phoneNumber": "string",
  • "status": "Registered",
  • "challenge": "string",
  • "forcePasswordChange": true,
  • "serviceAccountId": "string",
  • "subscriptionId": "d079718b-ff63-45dd-947b-4950c023750f",
  • "createdAt": "2019-08-24T14:15:22Z",
  • "updatedAt": "2019-08-24T14:15:22Z"
}

Update an account

Authorizations:
Bearer
Request Body schema: application/json
name
string or null
surname
string or null
email
string or null
avatarUrl
string or null
phoneNumber
string or null

Responses

Request samples

Content type
application/json
{
  • "name": "string",
  • "surname": "string",
  • "email": "string",
  • "avatarUrl": "string",
  • "phoneNumber": "string"
}

Response samples

Content type
application/json
{
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "name": "string",
  • "surname": "string",
  • "email": "string",
  • "avatarUrl": "string",
  • "phoneNumber": "string",
  • "status": "Registered",
  • "challenge": "string",
  • "forcePasswordChange": true,
  • "serviceAccountId": "string",
  • "subscriptionId": "d079718b-ff63-45dd-947b-4950c023750f",
  • "createdAt": "2019-08-24T14:15:22Z",
  • "updatedAt": "2019-08-24T14:15:22Z"
}

Delete an account

Authorizations:
Bearer

Responses

Response samples

Content type
application/json
true

Activate an account

Authorizations:
Bearer
Request Body schema: application/json
name
string or null
surname
string or null
password
string or null <password>

Responses

Request samples

Content type
application/json
{
  • "name": "string",
  • "surname": "string",
  • "password": "pa$$word"
}

Response samples

Content type
application/json
true

Change an account password

Authorizations:
Bearer
Request Body schema: application/json
oldPassword
string or null <password>
newPassword
string or null <password>

Responses

Request samples

Content type
application/json
{
  • "oldPassword": "pa$$word",
  • "newPassword": "pa$$word"
}

Response samples

Content type
application/json
true

Get an account by id

Authorizations:
Bearer
path Parameters
accountId
required
string <uuid>

Responses

Response samples

Content type
application/json
{
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "name": "string",
  • "surname": "string",
  • "email": "string",
  • "avatarUrl": "string",
  • "phoneNumber": "string",
  • "status": "Registered",
  • "challenge": "string",
  • "forcePasswordChange": true,
  • "serviceAccountId": "string",
  • "subscriptionId": "d079718b-ff63-45dd-947b-4950c023750f",
  • "createdAt": "2019-08-24T14:15:22Z",
  • "updatedAt": "2019-08-24T14:15:22Z"
}

Get an account by email

Authorizations:
Bearer
path Parameters
email
required
string

Responses

Response samples

Content type
application/json
{
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "name": "string",
  • "surname": "string",
  • "email": "string",
  • "avatarUrl": "string",
  • "phoneNumber": "string",
  • "status": "Registered",
  • "challenge": "string",
  • "forcePasswordChange": true,
  • "serviceAccountId": "string",
  • "subscriptionId": "d079718b-ff63-45dd-947b-4950c023750f",
  • "createdAt": "2019-08-24T14:15:22Z",
  • "updatedAt": "2019-08-24T14:15:22Z"
}

Create a service account

Authorizations:
Bearer

Responses

Response samples

Content type
application/json
"string"

Get the service account secret

Authorizations:
Bearer

Responses

Response samples

Content type
application/json
"string"

Upsert a personal resource group

Authorizations:
Bearer
path Parameters
shortName
required
string
Request Body schema: application/json
displayName
string or null
description
string or null
icon
string or null

Responses

Request samples

Content type
application/json
{
  • "displayName": "string",
  • "description": "string",
  • "icon": "string"
}

Response samples

Content type
application/json
{
  • "id": {
    },
  • "displayName": "string",
  • "description": "string",
  • "status": "Unknown",
  • "icon": "string",
  • "livesystems": [
    ],
  • "fractals": [
    ],
  • "createdAt": "2019-08-24T14:15:22Z",
  • "updatedAt": "2019-08-24T14:15:22Z"
}

Get a personal resource group by its short name

Authorizations:
Bearer
path Parameters
shortName
required
string

Responses

Response samples

Content type
application/json
{
  • "id": {
    },
  • "displayName": "string",
  • "description": "string",
  • "status": "Unknown",
  • "icon": "string",
  • "livesystems": [
    ],
  • "fractals": [
    ],
  • "createdAt": "2019-08-24T14:15:22Z",
  • "updatedAt": "2019-08-24T14:15:22Z"
}

Delete a personal resource group

Authorizations:
Bearer
path Parameters
shortName
required
string

Responses

Response samples

Content type
application/json
true

Bind a subscription to an account

Authorizations:
Bearer
path Parameters
accountId
required
string <uuid>
Request Body schema: application/json
subscriptionId
string <uuid>

Responses

Request samples

Content type
application/json
{
  • "subscriptionId": "d079718b-ff63-45dd-947b-4950c023750f"
}

Create a service account Deprecated

Authorizations:
Bearer

Responses

Response samples

Content type
application/json
"string"

Get the service account secret Deprecated

Authorizations:
Bearer

Responses

Response samples

Content type
application/json
"string"

Upsert a personal resource group Deprecated

Authorizations:
Bearer
path Parameters
shortName
required
string
Request Body schema: application/json
displayName
string or null
description
string or null
icon
string or null

Responses

Request samples

Content type
application/json
{
  • "displayName": "string",
  • "description": "string",
  • "icon": "string"
}

Response samples

Content type
application/json
{
  • "id": {
    },
  • "displayName": "string",
  • "description": "string",
  • "status": "Unknown",
  • "icon": "string",
  • "livesystems": [
    ],
  • "fractals": [
    ],
  • "createdAt": "2019-08-24T14:15:22Z",
  • "updatedAt": "2019-08-24T14:15:22Z"
}

Get a personal resource group by its short name Deprecated

Authorizations:
Bearer
path Parameters
shortName
required
string

Responses

Response samples

Content type
application/json
{
  • "id": {
    },
  • "displayName": "string",
  • "description": "string",
  • "status": "Unknown",
  • "icon": "string",
  • "livesystems": [
    ],
  • "fractals": [
    ],
  • "createdAt": "2019-08-24T14:15:22Z",
  • "updatedAt": "2019-08-24T14:15:22Z"
}

Delete a personal resource group Deprecated

Authorizations:
Bearer
path Parameters
accountId
required
string <uuid>
shortName
required
string

Responses

Response samples

Content type
application/json
true

Activate an account Deprecated

Authorizations:
Bearer
path Parameters
accountId
required
string <uuid>
Request Body schema: application/json
name
string or null
surname
string or null
password
string or null <password>

Responses

Request samples

Content type
application/json
{
  • "name": "string",
  • "surname": "string",
  • "password": "pa$$word"
}

Response samples

Content type
application/json
true

Health

/health

Authorizations:
Bearer

Responses

Organizations

Create an organization

Authorizations:
Bearer
Request Body schema: application/json
name
string or null
description
string or null
icon
string or null
tags
Array of strings or null
socialLinks
Array of strings or null

Responses

Request samples

Content type
application/json
{
  • "name": "string",
  • "description": "string",
  • "icon": "string",
  • "tags": [
    ],
  • "socialLinks": [
    ]
}

Response samples

Content type
application/json
{
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "name": "string",
  • "description": "string",
  • "icon": "string",
  • "tags": [
    ],
  • "socialLinks": [
    ],
  • "admins": [
    ],
  • "members": [
    ],
  • "teams": [
    ],
  • "resourceGroups": [
    ],
  • "serviceAccountId": "a814cf67-aaac-43ae-acb4-8d34e82a4b4c",
  • "status": "Unknown",
  • "subscriptionId": "d079718b-ff63-45dd-947b-4950c023750f",
  • "createdAt": "2019-08-24T14:15:22Z",
  • "createdBy": "25a02396-1048-48f9-bf93-102d2fb7895e",
  • "updatedAt": "2019-08-24T14:15:22Z",
  • "updatedBy": "b0efe45f-0520-4e21-90f0-7e35f137732e"
}

Update an organization

Authorizations:
Bearer
Request Body schema: application/json
organizationId
string <uuid>
name
string or null
description
string or null
icon
string or null
tags
Array of strings or null
socialLinks
Array of strings or null

Responses

Request samples

Content type
application/json
{
  • "organizationId": "7bc05553-4b68-44e8-b7bc-37be63c6d9e9",
  • "name": "string",
  • "description": "string",
  • "icon": "string",
  • "tags": [
    ],
  • "socialLinks": [
    ]
}

Response samples

Content type
application/json
{
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "name": "string",
  • "description": "string",
  • "icon": "string",
  • "tags": [
    ],
  • "socialLinks": [
    ],
  • "admins": [
    ],
  • "members": [
    ],
  • "teams": [
    ],
  • "resourceGroups": [
    ],
  • "serviceAccountId": "a814cf67-aaac-43ae-acb4-8d34e82a4b4c",
  • "status": "Unknown",
  • "subscriptionId": "d079718b-ff63-45dd-947b-4950c023750f",
  • "createdAt": "2019-08-24T14:15:22Z",
  • "createdBy": "25a02396-1048-48f9-bf93-102d2fb7895e",
  • "updatedAt": "2019-08-24T14:15:22Z",
  • "updatedBy": "b0efe45f-0520-4e21-90f0-7e35f137732e"
}

Get an organization

Authorizations:
Bearer
path Parameters
organizationId
required
string <uuid>

Responses

Response samples

Content type
application/json
{
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "name": "string",
  • "description": "string",
  • "icon": "string",
  • "tags": [
    ],
  • "socialLinks": [
    ],
  • "admins": [
    ],
  • "members": [
    ],
  • "teams": [
    ],
  • "resourceGroups": [
    ],
  • "serviceAccountId": "a814cf67-aaac-43ae-acb4-8d34e82a4b4c",
  • "status": "Unknown",
  • "subscriptionId": "d079718b-ff63-45dd-947b-4950c023750f",
  • "createdAt": "2019-08-24T14:15:22Z",
  • "createdBy": "25a02396-1048-48f9-bf93-102d2fb7895e",
  • "updatedAt": "2019-08-24T14:15:22Z",
  • "updatedBy": "b0efe45f-0520-4e21-90f0-7e35f137732e"
}

Delete an organization

Authorizations:
Bearer
path Parameters
organizationId
required
string <uuid>

Responses

Response samples

Content type
application/json
true

Upsert an organizational resource group

Authorizations:
Bearer
path Parameters
organizationId
required
string <uuid>
shortName
required
string
Request Body schema: application/json
displayName
string or null
description
string or null
icon
string or null

Responses

Request samples

Content type
application/json
{
  • "displayName": "string",
  • "description": "string",
  • "icon": "string"
}

Response samples

Content type
application/json
{
  • "id": {
    },
  • "displayName": "string",
  • "description": "string",
  • "status": "Unknown",
  • "icon": "string",
  • "livesystems": [
    ],
  • "fractals": [
    ],
  • "createdAt": "2019-08-24T14:15:22Z",
  • "updatedAt": "2019-08-24T14:15:22Z",
  • "membersIds": [
    ],
  • "teamsIds": [
    ],
  • "managersIds": [
    ],
  • "createdBy": "25a02396-1048-48f9-bf93-102d2fb7895e",
  • "updatedBy": "b0efe45f-0520-4e21-90f0-7e35f137732e"
}

Get an organizational resource group by shortname

Authorizations:
Bearer
path Parameters
organizationId
required
string <uuid>
shortName
required
string

Responses

Response samples

Content type
application/json
{
  • "id": {
    },
  • "displayName": "string",
  • "description": "string",
  • "status": "Unknown",
  • "icon": "string",
  • "livesystems": [
    ],
  • "fractals": [
    ],
  • "createdAt": "2019-08-24T14:15:22Z",
  • "updatedAt": "2019-08-24T14:15:22Z",
  • "membersIds": [
    ],
  • "teamsIds": [
    ],
  • "managersIds": [
    ],
  • "createdBy": "25a02396-1048-48f9-bf93-102d2fb7895e",
  • "updatedBy": "b0efe45f-0520-4e21-90f0-7e35f137732e"
}

Delete an organizational resource group

Authorizations:
Bearer
path Parameters
organizationId
required
string <uuid>
shortName
required
string

Responses

Response samples

Content type
application/json
true

Grant an organization permission to a principal

Authorizations:
Bearer
path Parameters
organizationId
required
string <uuid>
Request Body schema: application/json
principalType
string (PrincipalType)
Enum: "Account" "Team"
principalId
string or null

The identifier of the principal: Organization → GUID (e.g. 2cf133e2-6f35-4179-802e-51376ac79141).Account → email (e.g. example@fractal.cloud).

permissionType
string (PermissionType)
Enum: "Admin" "Edit" "Terminate" "View"

Responses

Request samples

Content type
application/json
{
  • "principalType": "Account",
  • "principalId": "string",
  • "permissionType": "Admin"
}

Response samples

Content type
application/json
true

Revoke an organization permission from a principal

Authorizations:
Bearer
path Parameters
organizationId
required
string <uuid>
Request Body schema: application/json
principalType
string (PrincipalType)
Enum: "Account" "Team"
principalId
string or null

The identifier of the principal: Organization → GUID (e.g. 2cf133e2-6f35-4179-802e-51376ac79141).Account → email (e.g. example@fractal.cloud).

permissionType
string (PermissionType)
Enum: "Admin" "Edit" "Terminate" "View"

Responses

Request samples

Content type
application/json
{
  • "principalType": "Account",
  • "principalId": "string",
  • "permissionType": "Admin"
}

Response samples

Content type
application/json
true

Grant an organizational resource group permission to a principal

Authorizations:
Bearer
path Parameters
organizationId
required
string <uuid>
shortName
required
string
Request Body schema: application/json
principalType
string (PrincipalType)
Enum: "Account" "Team"
principalId
string or null

The identifier of the principal: Organization → GUID (e.g. 2cf133e2-6f35-4179-802e-51376ac79141).Account → email (e.g. example@fractal.cloud).

permissionType
string (PermissionType)
Enum: "Admin" "Edit" "Terminate" "View"

Responses

Request samples

Content type
application/json
{
  • "principalType": "Account",
  • "principalId": "string",
  • "permissionType": "Admin"
}

Response samples

Content type
application/json
true

Revoke an organizational resource group permission from a principal

Authorizations:
Bearer
path Parameters
organizationId
required
string <uuid>
shortName
required
string
Request Body schema: application/json
principalType
string (PrincipalType)
Enum: "Account" "Team"
principalId
string or null

The identifier of the principal: Organization → GUID (e.g. 2cf133e2-6f35-4179-802e-51376ac79141).Account → email (e.g. example@fractal.cloud).

permissionType
string (PermissionType)
Enum: "Admin" "Edit" "Terminate" "View"

Responses

Request samples

Content type
application/json
{
  • "principalType": "Account",
  • "principalId": "string",
  • "permissionType": "Admin"
}

Response samples

Content type
application/json
true

Grant team permissions to a principal

Authorizations:
Bearer
path Parameters
organizationId
required
string <uuid>
shortName
required
string
Request Body schema: application/json
principalType
string (PrincipalType)
Enum: "Account" "Team"
principalId
string or null

The identifier of the principal: Organization → GUID (e.g. 2cf133e2-6f35-4179-802e-51376ac79141).Account → email (e.g. example@fractal.cloud).

permissionType
string (PermissionType)
Enum: "Admin" "Edit" "Terminate" "View"

Responses

Request samples

Content type
application/json
{
  • "principalType": "Account",
  • "principalId": "string",
  • "permissionType": "Admin"
}

Response samples

Content type
application/json
true

Revoke a team permission from a principal

Authorizations:
Bearer
path Parameters
organizationId
required
string <uuid>
shortName
required
string
Request Body schema: application/json
principalType
string (PrincipalType)
Enum: "Account" "Team"
principalId
string or null

The identifier of the principal: Organization → GUID (e.g. 2cf133e2-6f35-4179-802e-51376ac79141).Account → email (e.g. example@fractal.cloud).

permissionType
string (PermissionType)
Enum: "Admin" "Edit" "Terminate" "View"

Responses

Request samples

Content type
application/json
{
  • "principalType": "Account",
  • "principalId": "string",
  • "permissionType": "Admin"
}

Response samples

Content type
application/json
true

Upsert a team

Authorizations:
Bearer
path Parameters
organizationId
required
string <uuid>
Request Body schema: application/json
shortName
string or null
name
string or null
description
string or null
icon
string or null
isPrivate
boolean

Responses

Request samples

Content type
application/json
{
  • "shortName": "string",
  • "name": "string",
  • "description": "string",
  • "icon": "string",
  • "isPrivate": true
}

Response samples

Content type
application/json
{
  • "id": {
    },
  • "name": "string",
  • "description": "string",
  • "status": "Unknown",
  • "icon": "string",
  • "isPrivate": true,
  • "principalId": "0a52818d-1e0c-4e64-848e-4d04f9e914e5",
  • "createdAt": "2019-08-24T14:15:22Z",
  • "createdBy": "string",
  • "updatedAt": "2019-08-24T14:15:22Z",
  • "updatedBy": "string"
}

Get a team by shortname

Authorizations:
Bearer
path Parameters
organizationId
required
string <uuid>
shortname
required
string

Responses

Response samples

Content type
application/json
{
  • "id": {
    },
  • "name": "string",
  • "description": "string",
  • "status": "Unknown",
  • "icon": "string",
  • "isPrivate": true,
  • "principalId": "0a52818d-1e0c-4e64-848e-4d04f9e914e5",
  • "createdAt": "2019-08-24T14:15:22Z",
  • "createdBy": "string",
  • "updatedAt": "2019-08-24T14:15:22Z",
  • "updatedBy": "string"
}

Delete a team

Authorizations:
Bearer
path Parameters
organizationId
required
string <uuid>
shortname
required
string

Responses

Response samples

Content type
application/json
{
  • "id": {
    },
  • "name": "string",
  • "description": "string",
  • "status": "Unknown",
  • "icon": "string",
  • "isPrivate": true,
  • "principalId": "0a52818d-1e0c-4e64-848e-4d04f9e914e5",
  • "createdAt": "2019-08-24T14:15:22Z",
  • "createdBy": "string",
  • "updatedAt": "2019-08-24T14:15:22Z",
  • "updatedBy": "string"
}

Bind a subscription to an organization

Authorizations:
Bearer
path Parameters
organizationId
required
string <uuid>
Request Body schema: application/json
subscriptionId
string <uuid>

Responses

Request samples

Content type
application/json
{
  • "subscriptionId": "d079718b-ff63-45dd-947b-4950c023750f"
}

Create a service account

Authorizations:
Bearer
path Parameters
organizationId
required
string <uuid>

Responses

Response samples

Content type
application/json
"string"

Get the service account secret

Authorizations:
Bearer
path Parameters
organizationId
required
string <uuid>

Responses

Response samples

Content type
application/json
"string"

RefeedAccounts

/accounts/refeed

Authorizations:
Bearer
Request Body schema:
target
string or null
topicName
string or null
refeedId
string <uuid>

Responses

Request samples

Content type
{
  • "target": "string",
  • "topicName": "string",
  • "refeedId": "dee4ce44-c98b-46f3-b1d9-7673b7143afc"
}

RefeedOrganizationalResourceGroups

/organizations/resourcegroups/refeed

Authorizations:
Bearer
Request Body schema:
target
string or null
topicName
string or null
refeedId
string <uuid>

Responses

Request samples

Content type
{
  • "target": "string",
  • "topicName": "string",
  • "refeedId": "dee4ce44-c98b-46f3-b1d9-7673b7143afc"
}

RefeedOrganizations

/organizations/refeed

Authorizations:
Bearer
Request Body schema:
target
string or null
topicName
string or null
refeedId
string <uuid>

Responses

Request samples

Content type
{
  • "target": "string",
  • "topicName": "string",
  • "refeedId": "dee4ce44-c98b-46f3-b1d9-7673b7143afc"
}

RefeedPermissions

/organizations/permissions/refeed

Authorizations:
Bearer
Request Body schema:
target
string or null
topicName
string or null
refeedId
string <uuid>

Responses

Request samples

Content type
{
  • "target": "string",
  • "topicName": "string",
  • "refeedId": "dee4ce44-c98b-46f3-b1d9-7673b7143afc"
}

RefeedTeams

/organizations/teams/refeed

Authorizations:
Bearer
Request Body schema:
target
string or null
topicName
string or null
refeedId
string <uuid>

Responses

Request samples

Content type
{
  • "target": "string",
  • "topicName": "string",
  • "refeedId": "dee4ce44-c98b-46f3-b1d9-7673b7143afc"
}

Subscriptions

Create a subscription

Authorizations:
Bearer
Request Body schema: application/json
subscriptionType
string (SubscriptionType)
Enum: "Discover" "Workgroup" "Enterprise"
object (WorkgroupSubscriptionDetails)
object (EnterpriseSubscriptionDetails)

Responses

Request samples

Content type
application/json
{
  • "subscriptionType": "Discover",
  • "workgroupSubscriptionDetails": {
    },
  • "enterpriseSubscriptionDetails": {
    }
}

Response samples

Content type
application/json
{
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "subscriptionType": "Discover",
  • "createdAt": "2019-08-24T14:15:22Z",
  • "createdBy": "25a02396-1048-48f9-bf93-102d2fb7895e",
  • "updatedAt": "2019-08-24T14:15:22Z",
  • "updatedBy": "b0efe45f-0520-4e21-90f0-7e35f137732e"
}

Update a subscription

Authorizations:
Bearer
path Parameters
subscriptionId
required
string <uuid>
Request Body schema: application/json
subscriptionType
string (SubscriptionType)
Enum: "Discover" "Workgroup" "Enterprise"
object (WorkgroupSubscriptionDetails)
object (EnterpriseSubscriptionDetails)

Responses

Request samples

Content type
application/json
{
  • "subscriptionType": "Discover",
  • "workgroupSubscriptionDetails": {
    },
  • "enterpriseSubscriptionDetails": {
    }
}

Response samples

Content type
application/json
{
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "subscriptionType": "Discover",
  • "createdAt": "2019-08-24T14:15:22Z",
  • "createdBy": "25a02396-1048-48f9-bf93-102d2fb7895e",
  • "updatedAt": "2019-08-24T14:15:22Z",
  • "updatedBy": "b0efe45f-0520-4e21-90f0-7e35f137732e"
}

Get a subscription

Authorizations:
Bearer
path Parameters
subscriptionId
required
string <uuid>

Responses

Response samples

Content type
application/json
{
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "subscriptionType": "Discover",
  • "createdAt": "2019-08-24T14:15:22Z",
  • "createdBy": "25a02396-1048-48f9-bf93-102d2fb7895e",
  • "updatedAt": "2019-08-24T14:15:22Z",
  • "updatedBy": "b0efe45f-0520-4e21-90f0-7e35f137732e"
}

Delete a subscription

Authorizations:
Bearer
path Parameters
subscriptionId
required
string <uuid>

Responses

Response samples

Content type
application/json
true