Create Account
URL
http://vendor.zoomrank.com/accounts.json
Supported formats
JSON
Supported request methods
POST
Example
Create a new account
http://vendor.zoomrank.com/accounts.json
Arguments
Argument | Description | Format |
---|---|---|
account | The JSON object for the new account (See example request) | JSON |
Considerations
Only the name and external_id fields are allowed during creation.
Account Object
Field | Description | Format |
---|---|---|
external_id | Your unique identifier | char(125) |
name | Person/Company/Client name | char(50) |
dow | Weekly ranking day-of-week | 0 - 6 (0 = Sunday) |
Response Codes
201
- Success400
- Bad request. See error response.500
- Unexpected error. Try again.
Example Request
{ "external_id": "1234", "name": "My New Account" }
Example Response
{ "external_id": "1234", "id": 1, "name": "My New Account", "dow": 5 }