PATCH
/
access
/
v1
/
workspace
curl --request PATCH \
  --url https://api.invopop.com/access/v1/workspace \
  --header 'Content-Type: application/json' \
  --data '{
  "logo_url": "https://example.com/logo.png",
  "name": "My Company",
  "slug": "my-company"
}'
{
  "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"
}

Body

application/json
logo_url
string

The URL of the company logo.

Example:

"https://example.com/logo.png"

name
string

The name of the company.

Example:

"My Company"

slug
string

A unique identifier for the company.

Example:

"my-company"

Response

200 - application/json
OK
country
string

The country the workspace is based in.

Example:

"US"

created_at
string

The date and time the workspace was created.

Example:

"2018-01-01T00:00:00.000Z"

id
string

UUID of the workspace.

Example:

"347c5b04-cde2-11ed-afa1-0242ac120002"

name
string

The name of the workspace.

Example:

"My Company"

sandbox
boolean

Indicates if the workspace is in a sandbox environment.

Example:

true

slug
string

A unique identifier for the workspace.

Example:

"my_company"

updated_at
string

The date and time the workspace was last updated.

Example:

"2018-01-01T00:00:00.000Z"