Get all received form submission requests

GET /api/v1/submission-request/received/{account}

Query parameters

  • Filter by a comma separated list of UUIDs.

  • Date to filter when the record was created after. Example 2022-04-05

  • Date to filter when the record was created before. Example 2022-05-31

  • filter title of the form

  • sort string

    Field to sort by. Valid fields are [created_at, updated_at, description]. Negative sign to denote DESC. Defaults to '-created_at'.

  • per_page integer

    Number of results to return with pagination (Default 15. Max 500).

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
GET /api/v1/submission-request/received/{account}
curl \
 -X GET https://api.plannrcrm.com/api/v1/submission-request/received/account \
 -H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 -H "Content-Type: application/json" \
 -H "Accept: application/json"
Response examples (200)
{
  "data": [
    {
      "form": {
        "live": true,
        "uuid": "c476970b-03ee-410c-bdde-14b72410a935",
        "title": "Annual Catchup 2022",
        "sections": "App\\Http\\Resources\\FormQuestionResource",
        "created_at": "2024-10-16T11:10:14+01:00",
        "updated_at": "2024-10-16T11:10:14+01:00",
        "visibility": "public",
        "client_type": "client",
        "description": "This is the annual catchup form for 2022",
        "allowed_hosts": [
          "domain.com",
          "subdomain.domain.com"
        ],
        "create_client": true,
        "draft_submissions_count": 5,
        "submitted_submissions_count": 5
      },
      "uuid": "83bb760b-ed3e-4199-9657-0cc810e5d72c",
      "created_at": "2024-10-16T11:10:14+01:00",
      "submission": {
        "form": "App\\Http\\Resources\\FormResource",
        "uuid": "f6bb9ac1-6f2d-4572-8bb7-5d076c670f15",
        "stage": "draft",
        "account": "App\\Http\\Resources\\AccountResource",
        "answers": [
          {
            "last_name": "olive",
            "first_name": "john"
          }
        ],
        "request": "App\\Http\\Resources\\FormSubmissionRequestResource",
        "created_at": "2024-10-16T11:10:14+01:00",
        "updated_at": "2024-10-16T11:10:14+01:00"
      },
      "updated_at": "2024-10-16T11:10:14+01:00",
      "description": "Please submit your annual survey form",
      "has_submission": true
    }
  ]
}