GET api/ERP/Jobs/GetAllSpotProvidersCBX

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of SpotProviderType
NameDescriptionTypeAdditional information
ProviderID

integer

None.

ProviderName

string

None.

IsInactive

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ProviderID": 1,
    "ProviderName": "sample string 2",
    "IsInactive": true
  },
  {
    "ProviderID": 1,
    "ProviderName": "sample string 2",
    "IsInactive": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfDataTypes.SpotProviderType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/appsvc.rapidappsinc.com.Areas.ERP">
  <DataTypes.SpotProviderType>
    <IsInactive>true</IsInactive>
    <ProviderID>1</ProviderID>
    <ProviderName>sample string 2</ProviderName>
  </DataTypes.SpotProviderType>
  <DataTypes.SpotProviderType>
    <IsInactive>true</IsInactive>
    <ProviderID>1</ProviderID>
    <ProviderName>sample string 2</ProviderName>
  </DataTypes.SpotProviderType>
</ArrayOfDataTypes.SpotProviderType>