PUT Provider/ServicePackage

Update the provider service selection (whether the Provider is willing to offer a specific service)

Request Information

URI Parameters

None.

Body Parameters

ParaProviderServicePackage
NameDescriptionTypeAdditional information
ProviderId

integer

None.

ProviderServiceList

Collection of ParaProviderService

None.

Request Formats

application/json, text/json

Sample:
{
  "ProviderId": 1,
  "ProviderServiceList": [
    {
      "ProviderServiceId": 1,
      "Active": true
    },
    {
      "ProviderServiceId": 1,
      "Active": true
    }
  ]
}

application/xml, text/xml

Sample:
<ParaProviderServicePackage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models">
  <ProviderId>1</ProviderId>
  <ProviderServiceList>
    <ParaProviderService>
      <Active>true</Active>
      <ProviderServiceId>1</ProviderServiceId>
    </ParaProviderService>
    <ParaProviderService>
      <Active>true</Active>
      <ProviderServiceId>1</ProviderServiceId>
    </ParaProviderService>
  </ProviderServiceList>
</ParaProviderServicePackage>

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.