API
- Introduction
- Authentication
- Idempotency
- Versioning
- Silo
- Transform
- Sequences
- Access
- Workspaces
- Enrollments
- Utils
Workspaces
Update Workspace
Update the workspace details associated with the current authentication token.
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",
"slug": "my-company",
"updated_at": "2018-01-01T00:00:00.000Z"
}
Body
application/json
Response
200 - application/json
OK
The response is of type object
.
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",
"slug": "my-company",
"updated_at": "2018-01-01T00:00:00.000Z"
}
Assistant
Responses are generated using AI and may contain mistakes.