Retrieve Form
Get Form Endpoint
URL
GET /v1/forms/{id}
Description
This endpoint retrieves the details of a form identified by its ID.
Request
Path Parameters
id
(string): The unique identifier of the form.
Responses
Success Response
- Code: 200 OK
- Content:
{
"id": "gf_82340813216846bfbdb8fa3d0e2d0802",
"created": "2024-06-19T13:47:00.1733635Z",
"object": "form",
"as_text": "FORM_CONTENT_HERE",
"fields": [
{
"id": "c3bf",
"name": "Name",
"form_name": "topmostSubform[0].Page1[0].f1_01[0]",
"form_type": "Text"
},
{
"id": "fac0",
"name": "Surname",
"form_name": "topmostSubform[0].Page1[0].f1_02[0]",
"form_type": "Text"
},
//so on
],
"form_url": "https://example.com/file.pdf"
}