POST api/Providers

Get all active provider list, who is eligible to link/sync with Mobile App. Use POST method.

Request Information

URI Parameters

None.

Body Parameters

string

Request Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>

Response Information

Resource Description

Collection of RTOInfoModels
NameDescriptionTypeAdditional information
Code

RTO provider unique code

string

Required

Name

RTO provider name

string

Required

URL

RTOManager system URL

string

Required

Data type: Url

ReservedURL

RTOManager system alternative URL

string

Data type: Url

IsActive

Determine if RTO has mobile app sync enabled.

boolean

Required

Response Formats

application/json, text/json

Sample:
[
  {
    "Code": "sample string 1",
    "Name": "sample string 2",
    "URL": "sample string 3",
    "ReservedURL": "sample string 4",
    "IsActive": true
  },
  {
    "Code": "sample string 1",
    "Name": "sample string 2",
    "URL": "sample string 3",
    "ReservedURL": "sample string 4",
    "IsActive": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfRTOInfoModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MobileApp_WebAPI.Models">
  <RTOInfoModels>
    <Code>sample string 1</Code>
    <IsActive>true</IsActive>
    <Name>sample string 2</Name>
    <ReservedURL>sample string 4</ReservedURL>
    <URL>sample string 3</URL>
  </RTOInfoModels>
  <RTOInfoModels>
    <Code>sample string 1</Code>
    <IsActive>true</IsActive>
    <Name>sample string 2</Name>
    <ReservedURL>sample string 4</ReservedURL>
    <URL>sample string 3</URL>
  </RTOInfoModels>
</ArrayOfRTOInfoModels>