Getting Person Answers
Gets a list of answers for a Person.
Method Info
| Url | https://payitsquare.azurewebsites.net/api/v1/collect-page/{CollectPageId}/Person/{PayerId}/answers |
|---|---|
| Verb | GET |
| Headers | X-PayItSquare-AppKey, X-PayItSquare-Token |
| {CollectPageId} | The id of the collect page. |
| {PayerId} | The id of the Person. |
Output
| Property | Data Type | Other Info |
|---|---|---|
| Id | Int32 | The ID of this answer. |
| QuestionText | String | The text for the question. This will be the text of the question at the time it was answered. |
| QuestionId | Guid | The ID of the question being answered. |
| AnswerText | String | The answer for the question. |
| OptionId | Guid Array | If the question has options, this is the id of the option they've selected. |
Sample Get Output
[
{
"Id": 1234,
"QuestionText": "My Question",
"QuestionId": "cc912332-906e-407f-a580-104c2df8b9c1",
"AnswerText": "My Answer",
"OptionId": null
},
{
"Id": 1234,
"QuestionText": "My Question",
"QuestionId": "3d2203e2-f5d0-418c-8499-9e1502e5dd1e",
"AnswerText": "My Answer",
"OptionId": "c0006365-1f24-4666-9658-8dbbb5a72013"
}
]