GET v2/SalesRep/Customer
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
UserModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| UserTypeId | integer |
None. |
|
| string |
None. |
||
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| CreateDate | date |
None. |
|
| LastLogin | date |
None. |
|
| UserStatusId | integer |
None. |
|
| NotificationSvcAuthToken | string |
None. |
|
| MessageGroupCodes | Collection of string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"UserTypeId": 2,
"Email": "sample string 3",
"FirstName": "sample string 4",
"LastName": "sample string 5",
"CreateDate": "2025-12-08T12:59:00",
"LastLogin": "2025-12-08T12:59:00",
"UserStatusId": 7,
"NotificationSvcAuthToken": "sample string 8",
"MessageGroupCodes": [
"sample string 1",
"sample string 2"
]
}
application/xml, text/xml
Sample:
<UserModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Go4Gold.WebAPI.Models">
<CreateDate>2025-12-08T12:59:00.5706025-06:00</CreateDate>
<Email>sample string 3</Email>
<FirstName>sample string 4</FirstName>
<Id>1</Id>
<LastLogin>2025-12-08T12:59:00.5706025-06:00</LastLogin>
<LastName>sample string 5</LastName>
<MessageGroupCodes xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</MessageGroupCodes>
<NotificationSvcAuthToken>sample string 8</NotificationSvcAuthToken>
<UserStatusId>7</UserStatusId>
<UserTypeId>2</UserTypeId>
</UserModel>