POST api/supplier/save_update-supplier

Request Information

URI Parameters

None.

Body Parameters

SaveSupplierRequest
NameDescriptionTypeAdditional information
SupplierID

integer

None.

SupplierName

string

None.

SupplierDescription

string

None.

CreatedDate

date

None.

UpdatedDate

date

None.

UpdatedBy

integer

None.

Status

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "SupplierID": 1,
  "SupplierName": "sample string 2",
  "SupplierDescription": "sample string 3",
  "CreatedDate": "2026-08-14T17:40:27.307877+01:00",
  "UpdatedDate": "2026-08-14T17:40:27.307877+01:00",
  "UpdatedBy": 6,
  "Status": true
}

application/xml, text/xml

Sample:
<SaveSupplierRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PricingWebAPI.Models">
  <CreatedDate>2026-08-14T17:40:27.307877+01:00</CreatedDate>
  <Status>true</Status>
  <SupplierDescription>sample string 3</SupplierDescription>
  <SupplierID>1</SupplierID>
  <SupplierName>sample string 2</SupplierName>
  <UpdatedBy>6</UpdatedBy>
  <UpdatedDate>2026-08-14T17:40:27.307877+01:00</UpdatedDate>
</SaveSupplierRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.