latestOpenAPI 3.0.02026-08-0819201.1 MB
411f9f98c01e
workspaces
Creates a workspace
You have to be a member of the Contract’s scope and need contracts.workspace.create permission to access this resource
post/workspaces
Request body
Example request
{
"data": {
"attributes": {
"name": "My workspace"
},
"relationships": {
"contract": {
"data": {
"id": "5b4f337bff4304610483ba67"
}
}
}
}
}Response
Created
Example response
{
"data": {
"id": "5b4f337bff4304610483ba67",
"links": {
"self": "/v2/workspaces/5b4f337bff4304610483ba67"
},
"attributes": {
"name": "Workspace Name",
"flow_stats_enabled_default": true
},
"relationships": {
"contract": {
"data": {
"id": "5b4f337bff4304610483ba67"
},
"links": {
"self": "/v2/contracts/5b4f337bff4304610483ba67"
}
},
"members": {
"data": [
{
"id": "5b4f337bff4304610483ba67"
}
],
"links": {
"self": "/v2/workspaces/5b4f337bff4304610483ba67/members"
}
}
}
},
"included": [
{
"id": "5b4f337bff4304610483ba67",
"links": {
"self": "/v2/members/5b4f337bff4304610483ba67"
},
"attributes": {
"first_name": "John",
"last_name": "Smith",
"roles": [
"integrator"
],
"email": "test@example.com"
}
}
],
"links": {
"self": "/v2/workspaces/5b4f337bff4304610483ba67"
}
}