Skip to main content
GET
/
v1
/
forms
/
{id}
Read form
curl --request GET \
  --url https://api.example.com/v1/forms/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "org": {
    "name": "<string>"
  },
  "fields": [
    {
      "name": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Enter your Bearer token in the format 'Bearer <token>'

Path Parameters

id
string
required

Response

200 - application/json

Successful response

id
string
org
object
fields
object[]