POST api/School
Request Information
URI Parameters
None.
Body Parameters
CreateSchoolName | Description | Type | Additional information |
---|---|---|---|
Name | string |
Required |
|
CustomerId | integer |
Required |
|
AlertCustomerId | string |
None. |
|
Active | boolean |
Required |
|
DataEndDate | date |
Required |
|
DistrictCustomerId | integer |
Required |
Request Formats
application/json, text/json
Sample:
{ "Name": "sample string 1", "CustomerId": 2, "AlertCustomerId": "sample string 3", "Active": true, "DataEndDate": "2025-08-09T01:16:53.5667244+00:00", "DistrictCustomerId": 6 }
application/xml, text/xml
Sample:
<CreateSchool xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Domain.Objects.Organization"> <Active>true</Active> <AlertCustomerId>sample string 3</AlertCustomerId> <CustomerId>2</CustomerId> <DataEndDate>2025-08-09T01:16:53.5667244+00:00</DataEndDate> <DistrictCustomerId>6</DistrictCustomerId> <Name>sample string 1</Name> </CreateSchool>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
integerResponse Formats
application/json, text/json
Sample:
1
application/xml, text/xml
Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>