POST api/Charging/OoredooRevalidateAPI

Request Information

URI Parameters

None.

Body Parameters

ReValidateOTPRequestModel
NameDescriptionTypeAdditional information
ProjectID

integer

None.

RequestId

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ProjectID": 1,
  "RequestId": "sample string 2"
}

application/xml, text/xml

Sample:
<ReValidateOTPRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FlexiChargingOoreedo.Models">
  <ProjectID>1</ProjectID>
  <RequestId>sample string 2</RequestId>
</ReValidateOTPRequestModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ReValidateOTPResponseModel
NameDescriptionTypeAdditional information
IsCollected

boolean

None.

amount

decimal number

None.

RequestId

string

None.

success

boolean

None.

code

string

None.

message

string

None.

TimweResponse

string

None.

Errors

Collection of string

None.

Response Formats

application/json, text/json

Sample:
{
  "IsCollected": true,
  "amount": 2.0,
  "RequestId": "sample string 3",
  "success": true,
  "code": "sample string 5",
  "message": "sample string 6",
  "TimweResponse": "sample string 7",
  "Errors": [
    "sample string 1",
    "sample string 2"
  ]
}

application/xml, text/xml

Sample:
<ReValidateOTPResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FlexiChargingOoreedo.Models">
  <Errors xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </Errors>
  <TimweResponse>sample string 7</TimweResponse>
  <code>sample string 5</code>
  <message>sample string 6</message>
  <success>true</success>
  <IsCollected>true</IsCollected>
  <RequestId>sample string 3</RequestId>
  <amount>2</amount>
</ReValidateOTPResponseModel>