Goals
Update Goal
Update a goal
PUT
Update Goal
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Body
application/json
Response
Goal updated
Available options:
true Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Update a goal
curl --request PUT \
--url https://api.oviond.com/v1/goals/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"description": "<string>",
"target_value": 123,
"symbol": "<string>",
"client_id": "<string>",
"query": null
}
'{
"success": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Goal updated
true curl --request PUT \
--url https://api.oviond.com/v1/goals/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"description": "<string>",
"target_value": 123,
"symbol": "<string>",
"client_id": "<string>",
"query": null
}
'{
"success": true
}