Get a Form

Get an existing form resource.

HTTP GET

GET /api/2013-12-01/Forms/[Agency ID]/[Form ID]
Returns information for the given Form ID in the given Agency ID

Example Request

$ curl -G https://[Site Name].readyop.com/api/2013-12-01/Forms/[Agency ID]/[Object ID] \
-u "[API Account ID]:[API Token]"

Request Result

{
    "code": 0,
    "status": 200,
    "detail": "Success",
    "timestamp": "2020-07-07T21:20:04+00:00",
    "form": {
        "Form ID": 282,
        "Name": "My Test Form",
        "Description": "Form description / summary goes here!",
        "Fields": [
            {
                "Type": "name",
                "Name": "First & Last Name",
                "Format": "FL"
            },
            {
                "Type": "date",
                "Name": "Date of Birth",
                "Format": "MM/DD/YYYY"
            },
            {
                "Type": "email",
                "Name": "Email Address"
            }, ...
        ]
    }
}