Attendance
Responses
Forms
Get Form
GET
/
forms
/
{id}
curl --request GET \
--url https://api.jonze.co/forms/{id} \
--header 'x-api-key: <api-key>'
{
"id": "form_FDCxyzsw9oBrkEBZ",
"orgId": "org_01HPCN28VR5FQ87N9P4MWXJTHQ",
"name": "User Info",
"form": [
{
"label": "What org are representing?",
"type": "text",
"placeholder": "e.g. IEEE, ACM, ASU",
"id": 0
},
{
"label": "Org Size",
"type": "dropdown",
"id": 1,
"options": [
{
"label": "Small (1 - 20) members"
},
{
"label": "Medium (21 - 50) members"
},
{
"label": "Large (51+) members"
}
]
}
],
"createdAt": "1970-01-01T00:00:00.000Z",
"updatedAt": "1970-01-01T00:00:00.000Z"
}
Authorizations
Path Parameters
ID of form
Example:
"form_FDCxyzsw9oBrkEBZ"
Response
200
application/json
Retrieve form by ID
The response is of type object
.
curl --request GET \
--url https://api.jonze.co/forms/{id} \
--header 'x-api-key: <api-key>'
{
"id": "form_FDCxyzsw9oBrkEBZ",
"orgId": "org_01HPCN28VR5FQ87N9P4MWXJTHQ",
"name": "User Info",
"form": [
{
"label": "What org are representing?",
"type": "text",
"placeholder": "e.g. IEEE, ACM, ASU",
"id": 0
},
{
"label": "Org Size",
"type": "dropdown",
"id": 1,
"options": [
{
"label": "Small (1 - 20) members"
},
{
"label": "Medium (21 - 50) members"
},
{
"label": "Large (51+) members"
}
]
}
],
"createdAt": "1970-01-01T00:00:00.000Z",
"updatedAt": "1970-01-01T00:00:00.000Z"
}