Update a form submission request

PUT /api/v1/form/{form_uuid}/submission-request/{submissionRequest_uuid}
application/json

Body

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
    • uuid string

      The UUID of the resource.

    • The timestamp of when the resource was created.

    • The timestamp of when the resource was updated.

    • The description of the form submission request

    • form object

      The form linked to this submission request

      Additional properties are allowed.

    • Denotes if this request has a submission stored against it

    • The submission stored against this request

      Additional properties are allowed.

PUT /api/v1/form/{form_uuid}/submission-request/{submissionRequest_uuid}
curl \
 -X PUT https://api.plannrcrm.com/api/v1/form/form_uuid/submission-request/submissionRequest_uuid \
 -H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 -H "Content-Type: application/json" \
 -H "Accept: application/json" \
 -H "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
 -d '{"description":"Please can you submit your annual survey form"}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}

# Payload
{
  "description": "Please can you submit your annual survey form"
}
Response examples (200)
{
  "form": {
    "live": true,
    "uuid": "03c9e9ff-5abd-4cc5-b8a3-2cb154236f9e",
    "title": "Annual Catchup 2022",
    "sections": "App\\Http\\Resources\\FormQuestionResource",
    "created_at": "2024-11-20T13:24:01+00:00",
    "updated_at": "2024-11-20T13:24:01+00: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": "f69b734e-7e73-4adc-9815-48d12958996f",
  "created_at": "2024-11-20T13:24:01+00:00",
  "submission": {
    "form": "App\\Http\\Resources\\FormResource",
    "uuid": "ce09da7f-0fc1-4bd1-bcef-871eadc47170",
    "stage": "draft",
    "account": "App\\Http\\Resources\\AccountResource",
    "answers": [
      {
        "last_name": "olive",
        "first_name": "john"
      }
    ],
    "request": "App\\Http\\Resources\\FormSubmissionRequestResource",
    "created_at": "2024-11-20T13:24:01+00:00",
    "updated_at": "2024-11-20T13:24:01+00:00"
  },
  "updated_at": "2024-11-20T13:24:01+00:00",
  "description": "Please submit your annual survey form",
  "has_submission": true
}