GET https://api.actonsoftware.com/api/1/list/{listid}/record/{recordid}
This endpoint allows you to pull a record using the record ID.
GET https://api-eu.actonsoftware.com/api/1/list/{listid}/record/{recordid}
Parameters
| Name | Parameter Type |
Allow Multiple |
Required/ Optional |
Data Type | Description |
|---|---|---|---|---|---|
| Authorization: | Header | False | Required | String | Insert your generated access token. ("Bearer {access token}") |
| listid | Path | False | Required | String | Specify the ID of the list that contains the record. |
| recordid | Path | False | Required | String | Specify the record ID of the record you would like returned. |
Response
{
"l-0002:1",
"John",
"Doe",
"john.doe@act-on.com"
}
Code Examples
cURL
curl -X GET https://api.actonsoftware.com/api/1/list/l-0002/record/l-0002:1 -H "Authorization: Bearer 12345678-9abc-defg-hijk-lmnopqrs"