Oracle E Business Suite Createpurchaseorder Example is an example object payload from Oracle E-Business Suite, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.
{
"operationId": "createPurchaseOrder",
"method": "POST",
"path": "/po/purchaseOrders",
"summary": "Create a Purchase Order",
"requestExamples": [
{
"contentType": "application/json",
"name": "CreatepurchaseorderRequestExample",
"example": {
"vendorId": "500123",
"vendorSiteId": "500123",
"currencyCode": "example_value",
"typeLookupCode": "example_value",
"description": "A sample description.",
"buyerId": "500123",
"shipToLocationId": "500123",
"billToLocationId": "500123",
"termsId": "500123",
"lines": [
{
"lineNum": 10,
"itemId": "500123",
"itemDescription": "example_value",
"categoryId": "500123",
"quantity": 42.5,
"unitMeasLookupCode": "example_value",
"unitPrice": 42.5,
"needByDate": "2026-01-15",
"shipToOrganizationId": "500123"
}
]
}
}
],
"responseExamples": [
{
"status": "201",
"contentType": "application/json",
"name": "Createpurchaseorder201Example",
"example": {
"poHeaderId": "500123",
"segment1": "example_value",
"typeLookupCode": "STANDARD",
"vendorId": "500123",
"vendorName": "example_value",
"vendorSiteId": "500123",
"currencyCode": "example_value",
"authorizationStatus": "APPROVED",
"approvedFlag": "Y",
"closedCode": "OPEN",
"totalAmount": 42.5,
"creationDate": "2026-01-15T10:30:00Z",
"approvedDate": "2026-01-15",
"buyerId": "500123",
"shipToLocationId": "500123",
"billToLocationId": "500123",
"termsId": "500123",
"description": "A sample description.",
"lines": [
{
"poLineId": "500123",
"lineNum": 10,
"lineType": "example_value",
"itemId": "500123",
"itemDescription": "example_value",
"categoryId": "500123",
"quantity": 42.5,
"unitMeasLookupCode": "example_value",
"unitPrice": 42.5,
"amount": 42.5,
"needByDate": "2026-01-15",
"promisedDate": "2026-01-15",
"closedCode": "example_value",
"shipments": {}
}
],
"orgId": "500123",
"lastUpdateDate": "2026-01-15T10:30:00Z"
}
}
]
}