PUT api/punters/{punterId}/password
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| punterId | integer |
Required |
Body Parameters
BO.BETRequestObjects.Punter.PunterPasswordRequestFilter| Name | Description | Type | Additional information |
|---|---|---|---|
| OldPassword | string |
None. |
|
| NewPassword | string |
None. |
|
| VerifyNewPassword | string |
None. |
|
| RequestId | string |
None. |
|
| PinCode | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"oldPassword": "sample string 1",
"newPassword": "sample string 2",
"verifyNewPassword": "sample string 3",
"requestId": "sample string 4",
"pinCode": "sample string 5"
}
application/xml, text/xml
Sample:
<PunterPasswordRequestFilter xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <OldPassword>sample string 1</OldPassword> <NewPassword>sample string 2</NewPassword> <VerifyNewPassword>sample string 3</VerifyNewPassword> <RequestId>sample string 4</RequestId> <PinCode>sample string 5</PinCode> </PunterPasswordRequestFilter>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
BO.BETResponseObjects.Punter.ResetPasswordResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseMessage | string |
None. |
|
| ResponseType | BO.Enums.ResponseType |
None. |
Response Formats
application/json, text/json
Sample:
{
"responseMessage": "sample string 1",
"responseType": 1
}
application/xml, text/xml
Sample:
<ResetPasswordResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ResponseMessage>sample string 1</ResponseMessage> <ResponseType>Success</ResponseType> </ResetPasswordResponse>