get https://app.asana.com/api/1.0/goal_relationships/
Returns the complete updated goal relationship record for a single goal relationship.
Responses
Returns the complete updated goal relationship record for a single goal relationship.
xxxxxxxxxx
curl --request GET \
--url https://app.asana.com/api/1.0/goal_relationships/goal_relationship_gid \
--header 'accept: application/json'
xxxxxxxxxx
{
"data": {
"gid": "12345",
"resource_type": "goal_relationship",
"resource_subtype": "subgoal",
"supporting_resource": {
"gid": "12345",
"resource_type": "project",
"name": "Stuff to buy"
},
"contribution_weight": 1,
"supported_goal": {
"gid": "12345",
"resource_type": "goal",
"name": "Grow web traffic by 30%",
"owner": {
"gid": "12345",
"resource_type": "user",
"name": "Greg Sanchez"
}
}
}
}