v1

latestOpenAPI 3.0.0Apache 2.02026-07-267057121.5 KB

Update the workspace details associated with the current authentication token.

patch/access/v1/workspace

Request body

logo_urlstring

The URL of the company logo.

namestring

The name of the company.

slugstring

A unique identifier for the company.

Example request

{
  "logo_url": "https://example.com/logo.png",
  "name": "My Company",
  "slug": "my-company"
}

Response

OK

countrystring

The country the workspace is based in.

created_atstring

The date and time the workspace was created.

idstring

UUID of the workspace.

namestring

The name of the workspace.

sandboxboolean

Indicates if the workspace is in a sandbox environment.

slugstring

A unique identifier for the workspace.

updated_atstring

The date and time the workspace was last updated.

Example response

{
  "country": "US",
  "created_at": "2018-01-01T00:00:00.000Z",
  "id": "347c5b04-cde2-11ed-afa1-0242ac120002",
  "name": "My Company",
  "sandbox": true,
  "slug": "my_company",
  "updated_at": "2018-01-01T00:00:00.000Z"
}