Fetch the forms for a specific Form Type

GET /v2/Forms/{FormType}

TODO: Resource-level docs

Fetch the forms for a specific Form Type.

Path parameters

  • FormType string Required

    The Type of this Form. Currently only form-push is supported.

    Value is form-push.

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
    • Additional information for the available forms for this type.

    • form_type string | null

      The Type of this Form

      Value is form-push.

    • Object that contains the available forms for this type.

    • url string(uri) | null

      The URL to access the forms for this type.

GET /v2/Forms/{FormType}
curl \
 -X GET https://verify.twilio.com/v2/Forms/{FormType} \
 --user "username:password"
Response examples (200)
{
  "form_type": "form-push",
  "url": "https://example.com"
}