TAG LINE
SMALL TITLE
id | "id": 0 Type: Number This is the unique numeric identifier for the AccountType |
ownerId | "ownerId": 15 Type: Number Unique identifier for the associated Owner object. |
name | "name": "Hello World" Type: String |
isDefault | "isDefault": true Type: Boolean |
When updating an object you use the update request header with the list of properties to update. Then you need only supply the new values in the body of your request. Please note, this header can only be used with PUT or PATCH requests.
Field List:
DataFlow PATCH objects:
DELETE | api/v2/AccountType/{id:int} |
Delete an instance of the AccountType object. |
GET | api/v2/AccountType |
Retrieve all of the AccountType objects. |
GET | api/v2/AccountType/Paged |
Retreive all of the AccountType objects in a paged fashion. |
GET | api/v2/AccountType/{id:int} |
Retrieve an instance of the AccountType object by it's ID. | |
{id:int} | Unique identifier for the AccountType object. |
POST | api/v2/AccountType |
Create a new instance of the AccountType object. |
PUT | api/v2/AccountType/{id:int} |
Update an existing instance of the AccountType object. |