Skip to main content
PUT
/
api
/
workspaces
/
{id}
/
config
Update Workspace Config
curl --request PUT \
  --url http://localhost:8080/api/workspaces/{id}/config \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "auto_fix_merge_conflicts": true,
  "auto_fix_ci_failures": true
}
'
{
  "auto_fix_merge_conflicts": true,
  "auto_fix_ci_failures": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/json
auto_fix_merge_conflicts
boolean | null
auto_fix_ci_failures
boolean | null

Response

Successful Response

auto_fix_merge_conflicts
boolean
required
auto_fix_ci_failures
boolean
required