GET https://api.actonsoftware.com/api/1/page/{id}/urls
This endpoint allows you to pull the URL for a specified landing page 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/page/{id}/urls
Parameters
Name | Parameter Type |
Allow Multiple |
Required/ Optional |
Data Type | Description |
---|---|---|---|---|---|
Authorization: | Header | False | Required | String | Insert your generated access token. (Bearer {access token}) |
id | Path | False | Required | String | Specify the ID of the landing page. |
Response
{ "id": "p-0001", "urls": [ { "name": "Default", "url": "http://ci61.actonservice.com/acton/fs/blocks/showLandingPage/a/42415/p/p-0001/t/page/fm/0" } ] }
Code Examples
cURL
curl -X GET https://api.actonsoftware.com/api/1/page/p-0001/urls -H "Authorization: Bearer 12345678-9abc-defg-hijk-lmnopqrs"