Skip to main content
POST
/
v2
/
tasks
/
manage
/
session
Create Tasks Management Session
curl --request POST \
  --url https://api.example.com/v2/tasks/manage/session \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "callback_url": "<string>",
  "task_type": "requirement",
  "region_id": "<string>",
  "status": "todo"
}
'
{
  "url": "<string>",
  "created_at": "<string>",
  "expires_at": "<string>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
callback_url
string
required
task_type
enum<string>
required
Available options:
requirement,
question
region_id
string | null
status
enum<string>
default:todo
Available options:
todo,
overdue,
done,
automated,
managed

Response

Successful Response

url
string
required
created_at
string
required
expires_at
string
required