GET https://restapi.actonsoftware.com/api/1/account
This endpoint will pull general information about the user and the account used when you authenitcated.
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
{ "account_id": 12345, "cname": "johndoe.actonsoftware.com", "user_name": "John Doe", "user_email": "john.doe@act-on.com", "account_name": "John Doe's Account", "user_type": "Marketing", "isAdmin": true, "login": "johndoe@act-on.com", "time_zone": "US/Pacific" }
Code Examples
cURL
curl -X GET https://restapi.actonsoftware.com/api/1/account -H 'authorization: Bearer 12345678-9abc-defg-hijk-lmnopqrs' -H 'content-type: application/json'