TAG LINE
SMALL TITLE
id | "id": 8 Type: Number This is the unique numeric identifier for the State |
countryId | "countryId": 12 Type: Number Unique identifier for the associated Country object. |
name | "name": "Hello World" Type: String |
sortOrder | "sortOrder": 3 Type: Number |
code | "code": "Hello World" Type: String |
isVisible | "isVisible": true Type: Boolean |
ownerId | "ownerId": 11 Type: Number Unique identifier for the associated Owner object. |
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:
GET | api/v3/State |
Retrieve all of the State objects. |
GET | api/v3/State/Paged |
Retreive all of the State objects in a paged fashion. |
GET | api/v3/State/{id:int} |
Retrieve an instance of the State object by it's ID. | |
{id:int} | Unique identifier for the State object. |