Get custom field responses for entity
GET
/v1/custom-field-responses/
curl \
--request GET 'https://classmanager.test/v1/custom-field-responses/?entityId=stf_xxxxxxxx&entityId=std_xxxxxxxx'
Response examples (403)
{
"statusCode": 42.0,
"messages": [
"string"
],
"exception": {}
}
Response examples (404)
{
"statusCode": 42.0,
"messages": [
"string"
],
"exception": {}
}
Response examples (200)
{
"fields": [
{
"value": "answer1",
"customField": {
"id": "cf_123123123123",
"type": "select",
"title": "Custom Field Title",
"options": [
"answer1",
"answer2"
],
"companyId": "co_123123123123"
}
}
]
}