Tross
ATHENA

Create Goal Objective

Create goal objective in Athena

POSThttps://api.ontross.com/api/integrations/athena/create-goal-objective
Request Fields
input
object
required
Input object.
input.org_id
integer
required
Athena organization/practice identifier.
input.department_id
integer
required
Athena department identifier used for navigation and JWT acquisition.
input.patient_id
integer
required
Athena patient identifier.
input.goal_id
string
required
Athena goal identifier that receives the objective.
input.objective_title
string
required
Objective title.
input.start_date
string
required
Objective start date in Athena ISO-8601 format.
input.end_date
string
required
Objective end date in Athena ISO-8601 format.
auth_id
string
required
Auth id
Output Fields
created_objective_id
string
Created objective id
health_concern_id
string
Health concern id
goal_id
string
Goal id
patient_id
integer
Patient id
time_period_result
any
Time period result
Code
curl --request POST \
  --url https://api.ontross.com/api/integrations/athena/create-goal-objective \
  --header 'X-API-Key: REPLACE_KEY_VALUE' \
  --header 'content-type: application/json' \
  --data '{"input":{"org_id":32817,"department_id":15,"patient_id":1133,"goal_id":"1749","objective_title":"Practice deep breathing techniques","start_date":"2026-07-24T04:00:00.000Z","end_date":"2026-08-23T04:00:00.000Z"},"auth_id":"auth_uuid_here"}'
Request BODY
{
  "input": {
    "org_id": 32817,
    "department_id": 15,
    "patient_id": 1133,
    "goal_id": "1749",
    "objective_title": "Practice deep breathing techniques",
    "start_date": "2026-07-24T04:00:00.000Z",
    "end_date": "2026-08-23T04:00:00.000Z"
  },
  "auth_id": "auth_uuid_here"
}