Skip to main content
POST
/
v0
/
user
/
strategies
/
{user_strategy_id}
/
tasks
/
{task_external_id}
/
pints
Link Pint To Agent Task
curl --request POST \
  --url https://api.sumvin.com/v0/user/strategies/{user_strategy_id}/tasks/{task_external_id}/pints/ \
  --header 'Content-Type: application/json' \
  --data '
{
  "pint_uri": "<string>"
}
'
{
  "_links": {},
  "link": {
    "pint_id": "<string>",
    "task_id": "<string>",
    "created_at": 123
  }
}

Headers

x-juno-orgid
string | null

Tenant org ID for multi-tenant auth

x-sumvin-token
string | null
x-juno-jwt
string | null

Path Parameters

user_strategy_id
string
required

Accepts either a user strategy ID (ustr-*) or a strategy ID (str-*). When a strategy ID is provided, the API resolves the authenticated user's corresponding user strategy automatically.

Examples:

"ustr-abc123def456"

"str-abc123def456"

task_external_id
string
required

Body

application/json
pint_uri
string
required

PINT URI of the PINT to link

Response

Successful Response

HAL-style hypermedia links for navigation and available actions.