POST api/GetFulfillmentTypesForFulfillment
Request Information
URI Parameters
None.
Body Parameters
FulfillmentTypesRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| SchoolId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"SchoolId": "ee2930b4-7953-4f52-a8f1-d72409fff24b"
}
application/xml, text/xml
Sample:
<FulfillmentTypesRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cybersoft.Primero.OnlineFRE.APIs.Models.Order"> <SchoolId>ee2930b4-7953-4f52-a8f1-d72409fff24b</SchoolId> </FulfillmentTypesRequestModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Collection of FulfillmentTypesModel| Name | Description | Type | Additional information |
|---|---|---|---|
| OrdFulfillmentTypeId | integer |
None. |
|
| Description | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"OrdFulfillmentTypeId": 1,
"Description": "sample string 2"
},
{
"OrdFulfillmentTypeId": 1,
"Description": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfFulfillmentTypesModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cybersoft.Primero.OnlineFRE.APIs.Models.Order">
<FulfillmentTypesModel>
<Description>sample string 2</Description>
<OrdFulfillmentTypeId>1</OrdFulfillmentTypeId>
</FulfillmentTypesModel>
<FulfillmentTypesModel>
<Description>sample string 2</Description>
<OrdFulfillmentTypeId>1</OrdFulfillmentTypeId>
</FulfillmentTypesModel>
</ArrayOfFulfillmentTypesModel>