POST api/mapping/provider/update

Request Information

URI Parameters

None.

Body Parameters

ProviderMappingModel
NameDescriptionTypeAdditional information
id

integer

None.

provider_id

integer

None.

specialties

Collection of string

None.

specialty

string

None.

provider_name

string

None.

gb_provider_name

string

None.

gb_provider_id

string

None.

company_name

string

None.

location

string

None.

user_name

string

None.

updated_date

date

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "provider_id": 1,
  "specialties": [
    "sample string 1",
    "sample string 2"
  ],
  "specialty": "sample string 2",
  "provider_name": "sample string 3",
  "gb_provider_name": "sample string 4",
  "gb_provider_id": "sample string 5",
  "company_name": "sample string 6",
  "location": "sample string 7",
  "user_name": "sample string 8",
  "updated_date": "2026-05-01T21:10:18.5300934+00:00"
}

text/html

Sample:
{"id":1,"provider_id":1,"specialties":["sample string 1","sample string 2"],"specialty":"sample string 2","provider_name":"sample string 3","gb_provider_name":"sample string 4","gb_provider_id":"sample string 5","company_name":"sample string 6","location":"sample string 7","user_name":"sample string 8","updated_date":"2026-05-01T21:10:18.5300934+00:00"}

application/xml, text/xml

Sample:
<ProviderMappingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LSAtlas_WebAPI.Models">
  <company_name>sample string 6</company_name>
  <gb_provider_id>sample string 5</gb_provider_id>
  <gb_provider_name>sample string 4</gb_provider_name>
  <id>1</id>
  <location>sample string 7</location>
  <provider_id>1</provider_id>
  <provider_name>sample string 3</provider_name>
  <specialties xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </specialties>
  <specialty>sample string 2</specialty>
  <updated_date>2026-05-01T21:10:18.5300934+00:00</updated_date>
  <user_name>sample string 8</user_name>
</ProviderMappingModel>

multipart/form-data

Sample:
<ProviderMappingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LSAtlas_WebAPI.Models"><company_name>sample string 6</company_name><gb_provider_id>sample string 5</gb_provider_id><gb_provider_name>sample string 4</gb_provider_name><id>1</id><location>sample string 7</location><provider_id>1</provider_id><provider_name>sample string 3</provider_name><specialties xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"><d2p1:string>sample string 1</d2p1:string><d2p1:string>sample string 2</d2p1:string></specialties><specialty>sample string 2</specialty><updated_date>2026-05-01T21:10:18.5300934+00:00</updated_date><user_name>sample string 8</user_name></ProviderMappingModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json, text/html

Sample:
true

application/xml, text/xml, multipart/form-data

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>