List feedback for an objective
GET/v1/objectives/{objectiveId}/feedback
Lists all feedback submitted for an objective
List feedback for an objective
curl https://api.cadenya.com/v1/objectives/$OBJECTIVE_ID/feedback \
-H "Authorization: Bearer $CADENYA_API_KEY"{
"items": [
{
"data": {
"attributes": {
"foo": "string"
},
"comment": "comment",
"score": 0
},
"metadata": {
"id": "id",
"name": "name"
},
"info": {
"submittedBy": {
"metadata": {
"id": "id",
"accountId": "accountId",
"name": "name",
"profileId": "profileId",
"externalId": "externalId",
"labels": {
"foo": "string"
}
},
"spec": {
"type": "PROFILE_TYPE_USER",
"email": "email",
"name": "name"
}
}
}
}
],
"pagination": {
"nextCursor": "nextCursor",
"total": 0
}
}Returns Examples
{
"items": [
{
"data": {
"attributes": {
"foo": "string"
},
"comment": "comment",
"score": 0
},
"metadata": {
"id": "id",
"name": "name"
},
"info": {
"submittedBy": {
"metadata": {
"id": "id",
"accountId": "accountId",
"name": "name",
"profileId": "profileId",
"externalId": "externalId",
"labels": {
"foo": "string"
}
},
"spec": {
"type": "PROFILE_TYPE_USER",
"email": "email",
"name": "name"
}
}
}
}
],
"pagination": {
"nextCursor": "nextCursor",
"total": 0
}
}