POST api/UserLocation/{senderZipCode}/{recipZipCode}
Validates the User to the Software and returns the updated UserDTO with location ID Info
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| senderZipCode | string |
None. |
|
| recipZipCode | string |
None. |
Body Parameters
UserDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Username | string |
None. |
|
| LocatorId | globally unique identifier |
None. |
|
| UserId | globally unique identifier |
None. |
|
| IsLinkedToDriver | boolean |
None. |
|
| CanCheckIn | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Username": "sample string 1",
"LocatorId": "897faddc-9d01-464f-98b7-33fb353aafac",
"UserId": "b40c6819-afb2-43e6-9d93-b955a21a629d",
"IsLinkedToDriver": true,
"CanCheckIn": true
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
JsonResultOfUserDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Content | UserDTO |
None. |
|
| SerializerSettings | JsonSerializerSettings |
None. |
|
| Encoding | Encoding |
None. |
|
| Request | HttpRequestMessage |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.