GET https://api.actonsoftware.com/api/1/form/{id}/urls
This endpoint allows you to pull the URL for the specified classic from from the account.
Customers wanting to access our API via our gateway in the EU can use this link:
GET https://api-eu.actonsoftware.com/api/1/form/{id}/urls
Parameters
| Name | Parameter Type |
Allow Multiple |
Required/ Optional |
Data Type | Description |
|---|---|---|---|---|---|
| Authorizaton: | Header | False | Required | String | Insert your generated access token. (Bearer {access token}) |
| id | Path | False | Required | String | Specify the ID of the classic form. |
Response
{
"id": "00b7",
"title": "3/2 Test Classic Forms",
"description": "3/2 Test Classic Forms",
"urls": [
{
"name": "Default",
"url": "http://a17944.actonsoftware.com/acton/form/17944/00b7:d-0001/0/-/-/-/-/index.htm",
"prefilled_url": "http://a17944.actonsoftware.com/acton/form/17944/00b7:d-0001/1/-/-/-/-/index.htm",
"report_url": "http://a17944.actonsoftware.com/acton/form/17944/00b7:d-0001/0/-/-/-/-/index.htm?k=XMXXAY"
}
]
}
Code Examples
cURL
curl -X GET https://api.actonsoftware.com/api/1/form/00b7/urls -H "Authorization: Bearer 12345678-9abc-defg-hijk-lmnopqrs"