POST api/School/Save

Request Information

URI Parameters

None.

Body Parameters

ED_School_Registration
NameDescriptionTypeAdditional information
ROWID

globally unique identifier

None.

School_ID

integer

None.

UserID

integer

None.

FK_Country_ID

integer

None.

FK_Province_ID

integer

None.

FK_City_ID

integer

None.

FK_Town_ID

integer

None.

NationalityNumberOwner

string

None.

School_Name

string

None.

Address2

string

None.

PhoneCell

string

None.

PhoneOffice

string

None.

Fax

string

None.

School_Email

string

None.

School_Registration_Number

string

None.

School_Registration_Certificate_Pic

string

None.

School_Registration_Issue_Date

date

None.

School_Registration_Expire_Date

date

None.

IsActive

boolean

None.

IsDeleted

boolean

None.

CreatedDate

date

None.

CreatedBy

globally unique identifier

None.

UpdatedDate

date

None.

UpdatedBy

globally unique identifier

None.

ApproveDate

date

None.

ApprovedBy

globally unique identifier

None.

CurrentStatus

integer

None.

Notes

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ROWID": "974f22d8-13a8-4bd9-8f28-00a4f168e9bb",
  "School_ID": 1,
  "UserID": 1,
  "FK_Country_ID": 1,
  "FK_Province_ID": 1,
  "FK_City_ID": 1,
  "FK_Town_ID": 1,
  "NationalityNumberOwner": "sample string 2",
  "School_Name": "sample string 3",
  "Address2": "sample string 4",
  "PhoneCell": "sample string 5",
  "PhoneOffice": "sample string 6",
  "Fax": "sample string 7",
  "School_Email": "sample string 8",
  "School_Registration_Number": "sample string 9",
  "School_Registration_Certificate_Pic": "sample string 10",
  "School_Registration_Issue_Date": "2026-04-06T21:38:30.3907092-05:00",
  "School_Registration_Expire_Date": "2026-04-06T21:38:30.3907092-05:00",
  "IsActive": true,
  "IsDeleted": true,
  "CreatedDate": "2026-04-06T21:38:30.3927298-05:00",
  "CreatedBy": "09244c0d-3711-49c3-9c5e-f0f620ec1a9c",
  "UpdatedDate": "2026-04-06T21:38:30.3927298-05:00",
  "UpdatedBy": "b0d93ba7-b44b-49d6-a030-bb859e15edbb",
  "ApproveDate": "2026-04-06T21:38:30.3944979-05:00",
  "ApprovedBy": "3da63b7f-139b-492a-9737-5bd284c5c90c",
  "CurrentStatus": 1,
  "Notes": "sample string 11"
}

application/xml, text/xml

Sample:
<ED_School_Registration xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Entities">
  <Address2>sample string 4</Address2>
  <ApproveDate>2026-04-06T21:38:30.3944979-05:00</ApproveDate>
  <ApprovedBy>3da63b7f-139b-492a-9737-5bd284c5c90c</ApprovedBy>
  <CreatedBy>09244c0d-3711-49c3-9c5e-f0f620ec1a9c</CreatedBy>
  <CreatedDate>2026-04-06T21:38:30.3927298-05:00</CreatedDate>
  <CurrentStatus>1</CurrentStatus>
  <FK_City_ID>1</FK_City_ID>
  <FK_Country_ID>1</FK_Country_ID>
  <FK_Province_ID>1</FK_Province_ID>
  <FK_Town_ID>1</FK_Town_ID>
  <Fax>sample string 7</Fax>
  <IsActive>true</IsActive>
  <IsDeleted>true</IsDeleted>
  <NationalityNumberOwner>sample string 2</NationalityNumberOwner>
  <Notes>sample string 11</Notes>
  <PhoneCell>sample string 5</PhoneCell>
  <PhoneOffice>sample string 6</PhoneOffice>
  <ROWID>974f22d8-13a8-4bd9-8f28-00a4f168e9bb</ROWID>
  <School_Email>sample string 8</School_Email>
  <School_ID>1</School_ID>
  <School_Name>sample string 3</School_Name>
  <School_Registration_Certificate_Pic>sample string 10</School_Registration_Certificate_Pic>
  <School_Registration_Expire_Date>2026-04-06T21:38:30.3907092-05:00</School_Registration_Expire_Date>
  <School_Registration_Issue_Date>2026-04-06T21:38:30.3907092-05:00</School_Registration_Issue_Date>
  <School_Registration_Number>sample string 9</School_Registration_Number>
  <UpdatedBy>b0d93ba7-b44b-49d6-a030-bb859e15edbb</UpdatedBy>
  <UpdatedDate>2026-04-06T21:38:30.3927298-05:00</UpdatedDate>
  <UserID>1</UserID>
</ED_School_Registration>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Result
NameDescriptionTypeAdditional information
Status

ResultStatus

None.

Message

string

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": 100,
  "Message": "sample string 1",
  "Data": {}
}

application/xml, text/xml

Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Generics">
  <Data />
  <Message>sample string 1</Message>
  <Status>Success</Status>
</Result>