Salespersons
The Salespersons resource allows Salespersons to be listed, created and updated. An individual Salesperson’s details can be viewed, or updated by appending its identifier (a GUID formatted as XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
) to the URI.
The full range of URIs and HTTP Verbs supported are:
Operation | HTTP Action |
---|---|
List a page of Salespersons | GET /Salespersons |
Create a new Salesperson | POST /Salespersons/{id} |
Update any Salesperson | POST /Salespersons/{id} |
GET Salespersons
Available Fields for GET Salespersons
Property | Type | Length | Notes |
String | 256 | ||
FullName | String | 256 | |
Guid | Guid | Unique identifier. Can only be set when adding a record. | |
LastModifiedOn | Nullable DateTime | ||
Obsolete | Boolean | true , false |
Examples for Request GET /Salespersons
show xml example
show json example
POST Salespersons
Available Fields for POST Salespersons
Property | Type | Length | Required | Notes |
String | 256 | Yes | Must be unique. | |
FullName | String | 256 | Yes | |
Guid | Guid | Yes | Unique identifier. Can only be set when adding a record. | |
Obsolete | Boolean | true , false |
Examples for Request POST /Salespersons
show xml example
show json example