Get account information
1 |
GET /api/1/account |
Parameters
Name | Parameter Type |
Allow Multiple |
Required/ Optional |
Data Type | Description |
---|---|---|---|---|---|
Authorization: | Header | False | Required | String (Bearer {access token}) | Pass the authentication token that was granted when you authorized access. |
Request
HTTP
1 2 3 4 |
GET /api/1/account HTTP/1.1 Host: restapi.actonsoftware.com Authorization: Bearer c333bc22884f6ebe45f2c3428381 Cache-Control: no-cache |
curl
1 |
curl -X GET -H "Authorization: Bearer c333bc22884f6ebe45f2c3428381" -H "Cache-Control: no-cache" -H https://restapi.actonsoftware.com/api/1/account |
Response
A successful request results in a JSON containing basic account information like the following:
1 2 3 4 5 6 7 8 |
{ "account_id": 4080, "cname": "a0000.software.com", "user_name": "Jane Doe", "user_email": "jane.doe@somewhere.net", "account_name": "DEV_SMWH", "user_type": "Marketing" } |