GET
/formentryfields/{id}
curl \
--request GET 'https://YOURSITE.infoodle.com/apiv2/formentryfields/12345' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
{
"field_type": 123,
"field_label": "First Name",
"repeat_index": 0,
"entered_value": "John Doe",
"deleted_at": "2023-10-20T10:30:00Z"
}
]
Response examples (400)
{
"error": "Invalid field contents",
"errors": {
"errorfield": [
{
"code": 400,
"message": "Invalid value supplied for field"
}
]
}
}
Response examples (401)
{
"error": "Unauthorised"
}
Response examples (403)
{
"error": "Invalid Permission"
}
Response examples (404)
{
"error": "Not Found"
}