Cognito Forms · Example Payload

Get Forms Example

Example: Retrieve a list of all accessible forms via GET /api/forms

FormsForm BuilderForm EntriesWorkflow AutomationData CollectionOData

Get Forms Example is an example object payload from Cognito Forms, with 3 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

descriptionrequestresponse

Example Payload

Raw ↑
{
  "description": "Example: Retrieve a list of all accessible forms via GET /api/forms",
  "request": {
    "method": "GET",
    "url": "https://cognitoforms.com/api/forms",
    "headers": {
      "Authorization": "Bearer {api_key}"
    }
  },
  "response": {
    "status": 200,
    "body": [
      {
        "Id": "1",
        "Name": "Contact Us"
      },
      {
        "Id": "2",
        "Name": "Event Registration"
      },
      {
        "Id": "3",
        "Name": "Job Application"
      }
    ]
  }
}