POST api/provider_master/{providerId}/billing

Request Information

URI Parameters

NameDescriptionTypeAdditional information
providerId

integer

Required

Body Parameters

ProviderBillingModel
NameDescriptionTypeAdditional information
id

integer

None.

from_date

date

None.

to_date

date

None.

billing_principal

decimal number

None.

billing_interest

decimal number

None.

collection_principal

decimal number

None.

collection_interest

decimal number

None.

case_type_id

integer

None.

case_type_name

string

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "from_date": "2026-05-01T21:13:03.0533273+00:00",
  "to_date": "2026-05-01T21:13:03.0533273+00:00",
  "billing_principal": 1.0,
  "billing_interest": 1.0,
  "collection_principal": 1.0,
  "collection_interest": 1.0,
  "case_type_id": 1,
  "case_type_name": "sample string 2"
}

text/html

Sample:
{"id":1,"from_date":"2026-05-01T21:13:03.0533273+00:00","to_date":"2026-05-01T21:13:03.0533273+00:00","billing_principal":1.0,"billing_interest":1.0,"collection_principal":1.0,"collection_interest":1.0,"case_type_id":1,"case_type_name":"sample string 2"}

application/xml, text/xml

Sample:
<ProviderBillingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LSAtlas_WebAPI.Models">
  <billing_interest>1</billing_interest>
  <billing_principal>1</billing_principal>
  <case_type_id>1</case_type_id>
  <case_type_name>sample string 2</case_type_name>
  <collection_interest>1</collection_interest>
  <collection_principal>1</collection_principal>
  <from_date>2026-05-01T21:13:03.0533273+00:00</from_date>
  <id>1</id>
  <to_date>2026-05-01T21:13:03.0533273+00:00</to_date>
</ProviderBillingModel>

multipart/form-data

Sample:
<ProviderBillingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LSAtlas_WebAPI.Models"><billing_interest>1</billing_interest><billing_principal>1</billing_principal><case_type_id>1</case_type_id><case_type_name>sample string 2</case_type_name><collection_interest>1</collection_interest><collection_principal>1</collection_principal><from_date>2026-05-01T21:13:03.0533273+00:00</from_date><id>1</id><to_date>2026-05-01T21:13:03.0533273+00:00</to_date></ProviderBillingModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

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.