POST api/Fonteva/Insert_PSI_Exam_Order

Inserts a single PSI EXAM ORDER record using the POST Method (ALL FIELDS ARE REQUIRED) (SERVICE WILL NOT INSERT A DUPLICATE RECORD)

Request Information

URI Parameters

None.

Body Parameters

PSI_Exam_Order
NameDescriptionTypeAdditional information
SF_contact_ID

string

None.

Payment_Received_Date

date

None.

ReceiptNumber

string

None.

Item

string

None.

Item_LineDescription

string

None.

Goal_ID_Core

string

None.

Goal_ID_Sim

string

None.

Request Formats

application/json, text/json

Sample:
{
  "SF_contact_ID": "sample string 1",
  "Payment_Received_Date": "2025-04-03T18:30:34.7740503-05:00",
  "ReceiptNumber": "sample string 3",
  "Item": "sample string 4",
  "Item_LineDescription": "sample string 5",
  "Goal_ID_Core": "sample string 6",
  "Goal_ID_Sim": "sample string 7"
}

application/xml, text/xml

Sample:
<PSI_Exam_Order xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ACMA_WebAPI">
  <Goal_ID_Core>sample string 6</Goal_ID_Core>
  <Goal_ID_Sim>sample string 7</Goal_ID_Sim>
  <Item>sample string 4</Item>
  <Item_LineDescription>sample string 5</Item_LineDescription>
  <Payment_Received_Date>2025-04-03T18:30:34.7740503-05:00</Payment_Received_Date>
  <ReceiptNumber>sample string 3</ReceiptNumber>
  <SF_contact_ID>sample string 1</SF_contact_ID>
</PSI_Exam_Order>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'PSI_Exam_Order'.

Response Information

Resource Description

Results_Status
NameDescriptionTypeAdditional information
Status

string

None.

Result

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": "sample string 1",
  "Result": "sample string 2"
}

application/xml, text/xml

Sample:
<Results_Status xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ACMA_WebAPI">
  <Result>sample string 2</Result>
  <Status>sample string 1</Status>
</Results_Status>