Skip to main content
POST
/
api
/
v1
/
{issue_identifier}
/
model
Update model override for an issue
curl --request POST \
  --url http://localhost:4000/api/v1/{issue_identifier}/model \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "model": "<string>",
  "reasoning_effort": "none",
  "reasoningEffort": "none"
}
'
{}

Authorizations

Authorization
string
header
required

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

Path Parameters

issue_identifier
string
required

Issue identifier (e.g. ENG-123)

Body

application/json
model
string
required
Minimum string length: 1
reasoning_effort
enum<string> | null
Available options:
none,
minimal,
low,
medium,
high,
xhigh
reasoningEffort
enum<string> | null
Available options:
none,
minimal,
low,
medium,
high,
xhigh

Response

Model updated

The response is of type object.

Last modified on March 31, 2026