Get Sender From List
1 |
GET https://restapi.actonsoftware.com/api/1/account/senders |
Parameters
Name | Parameter Type |
Allow Multiple |
Required/ Optional |
Data Type | Description |
---|---|---|---|---|---|
Authorization: | Header | false | Required | String | Insert your generated access token. (Bearer {access token}) |
Response
1 2 3 4 5 6 7 8 9 10 11 12 |
[ { "title": "", "cell": "", "name": "John Doe", "email": "john.doe@act-on.com", "phone": "", "verified": false, "fax": "", "uuid": "84c29d36-dd3a-4e84-a06e-c770c2d2806b" } ] |
Code Examples
1 |
curl -X GET https://restapi.actonsoftware.com/api/1/account/senders -H "Authorization: Bearer 12345678-9abc-defg-hijk-lmnopqrs" |