Skip to main content
GET
/
v1
/
goals
List Goals
curl --request GET \
  --url https://api.oviond.com/v1/goals \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "id": "goal_abc123",
      "account_id": "<string>",
      "name": "Q4 Revenue Target",
      "target_value": 250000,
      "operator": ">=",
      "goal_type": "static",
      "client_id": "<string>",
      "description": "<string>",
      "symbol": "$",
      "query": null,
      "created_at": null,
      "updated_at": null
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

client_id
string

Response

200 - application/json

Goals list

success
enum<boolean>
required
Available options:
true
data
object[]
required