ATHENA
Create Goal Objective
Create goal objective in Athena
POSThttps://api.ontross.com/api/integrations/athena/create-goal-objective
Request Fields
input
object
requiredInput object.
input.org_id
integer
requiredAthena organization/practice identifier.
input.department_id
integer
requiredAthena department identifier used for navigation and JWT acquisition.
input.patient_id
integer
requiredAthena patient identifier.
input.goal_id
string
requiredAthena goal identifier that receives the objective.
input.objective_title
string
requiredObjective title.
input.start_date
string
requiredObjective start date in Athena ISO-8601 format.
input.end_date
string
requiredObjective end date in Athena ISO-8601 format.
auth_id
string
requiredAuth 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"
}