Application custom-fields
GET/applications/:id/custom-fields
This endpoint retrieve and returns the custom fields value entered by the user during the application process.
The custom fields the user will have to fill in are defined in the settings section of your project.
Retrieving the custom fields requires the ID of the user application.
Custom fields that aren't required or that you added afterwards may not be present in the response.
Request
Path Parameters
Header Parameters
Responses
- 200
- 404
The request has succeeded.
- application/json
- Schema
- Example (from schema)
- Example
Schema
Array [
- InputField
- TextAreaField
- SelectField
- CheckboxField
- CountrySelectField
- UploadField
]
oneOf
Slug of the field.
Possible values: [input
]
Value entered by the user.
Slug of the field.
Possible values: [textarea
]
Value entered by the user.
Slug of the field.
Possible values: [select
]
Selected choice of the user.
Slug of the field.
Possible values: [checkbox
]
Whether the checkbox is checked.
Slug of the field.
Possible values: [country-select
]
ISO 3166-1 alpha-3 country code.
Slug of the field.
Possible values: [upload
]
HTTP URL to the uploaded file.
[
{},
{},
{},
{},
{},
{}
]
[
{
"slug": "name",
"type": "input",
"value": "John Doe"
},
{
"slug": "description",
"type": "textarea",
"value": "This is a description."
},
{
"slug": "fruits",
"type": "select",
"choice": "banana"
},
{
"slug": "terms",
"type": "checkbox",
"checked": true
},
{
"slug": "country",
"type": "country-select",
"country": "USA"
},
{
"slug": "file",
"type": "upload",
"url": "https://example.com/file.pdf"
}
]
The server cannot find the requested resource.