GET
/
access
/
v1
/
workspace
curl --request GET \
  --url https://api.invopop.com/access/v1/workspace
{
  "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"
}

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"