POST api/v1/code/donorservicecode
Add a new donor service code
Request Information
URI Parameters
None.
Body Parameters
Donor service code object that needs to be added
DonorServiceCode| Name | Description | Type | Additional information |
|---|---|---|---|
| Code | string |
Required String length: inclusive between 0 and 10 |
|
| Description | string |
Required String length: inclusive between 0 and 80 |
|
| Order | integer |
Required |
|
| LastUpdated | date |
None. |
|
| LastUpdatedBy | string |
String length: inclusive between 0 and 200 |
|
| Created | date |
None. |
|
| CreatedBy | string |
String length: inclusive between 0 and 200 |
Request Formats
application/json, text/json
Sample:
{
"Code": "sample string 1",
"Description": "sample string 2",
"Order": 3,
"LastUpdated": "2026-02-04T01:55:53.204",
"LastUpdatedBy": "sample string 4",
"Created": "2026-02-04T01:55:53.204",
"CreatedBy": "sample string 5"
}
application/xml, text/xml
Sample:
<DonorServiceCode xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DPCSWS.Models"> <Code>sample string 1</Code> <Created>2026-02-04T01:55:53.2049685+00:00</Created> <CreatedBy>sample string 5</CreatedBy> <Description>sample string 2</Description> <LastUpdated>2026-02-04T01:55:53.2049685+00:00</LastUpdated> <LastUpdatedBy>sample string 4</LastUpdatedBy> <Order>3</Order> </DonorServiceCode>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.