Get all schedules
/fscmRestApi/resources/11.13.18.05/purchaseOrderSchedules
Request
-
effectiveDate: string
This query parameter is used to fetch resources which are effective dated as of the specified start date. The value of this query parameter is a string having a date in yyyy-MM-dd format
-
expand: string
When this parameter is provided, the specified children are included in the resource payload (instead of just a link). The value of this query parameter is "all" or "". More than one child can be specified using comma as a separator. Example: ?expand=Employees,Localizations. Nested children can also be provided following the format "Child.NestedChild" (Example: ?expand=Employees.Managers). If a nested child is provided (Example: Employees.Managers), the missing children will be processed implicitly. For example, "?expand=Employees.Managers" is the same as "?expand=Employees,Employees.Managers" (which will expand Employees and Managers).
-
fields: string
This parameter filters the resource fields. Only the specified fields are returned, which means that if no fields are specified, no fields are returned (useful to get only the links). If an indirect child resource is provided (Example: Employees.Managers), the missing children will be processed implicitly. For example, "?fields=Employees.Managers:Empname" is the same as "?fields=;Employees:;Employees.Managers:Empname" (which will only return the "Empname" field for Managers). the value of this query parameter is a list of resource fields. The attribute can be a direct (Example: Employees) or indirect (Example: Employees.Managers) child. It cannot be combined with expand query parameter. If both are provided, only fields will be considered.
Format: ?fields=Attribute1,Attribute2
Format for fields in child resource: ?fields=Accessor1:Attribute1,Attribute2 -
finder: string
Used as a predefined finder to search the collection.
Format: ?finder=<finderName>;<variableName>=<variableValue>,<variableName2>=<variableValue2>
The following are the available finder names and corresponding finder variables:- PrimaryKey: Find purchase order schedules according to the line location identifier as the primary key.
Finder Variables:- LineLocationId; integer; Value that uniquely identifies the purchase order schedule.
- findPOSchedules: Find purchase order schedules according to the specified values.
Finder Variables:- Intent; string; Value that uniquely identifies the intent. Valid values are APUser, POUser, LOBUser, SSPUser and NonAgentUser.
- POHeaderId; integer; Value that uniquely identifies the purchase order.
- ScheduleStatus; string; Status of the purchase order schedule.
- SysEffectiveDate; object.
- PrimaryKey: Find purchase order schedules according to the line location identifier as the primary key.
-
limit: integer
This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.
-
links: string
This parameter can be used to show only certain links while accessing a singular resource or a resource collection. The parameter value format is a comma-separated list of : <link_relation>
Example:
self,canonical -
offset: integer
Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.
-
onlyData: boolean
The resource item payload will be filtered in order to contain only data (no links section, for example).
-
orderBy: string
This parameter orders a resource collection based on the specified fields. The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and "asc" or "desc". Specify "asc" for ascending and "desc" for descending. The default value is "asc". For example, ?orderBy=field1:asc,field2:desc
-
q: string
This query parameter defines the where clause. The resource collection will be queried using the provided expressions. The value of this query parameter is one or more expressions. Example: ?q=Deptno>=10 and <= 30;Loc!=NY
Format: ?q=expression1;expression2
You can use these queryable attributes to filter this collection resource using the q query parameter:- AnticipatedArrivalDate; string; Date when the ordered goods are expected to be delivered based on the current projected date of shipping.
- BilledAmount; number; Amount equivalent of the matched invoice lines based on the purchase price.
- BilledQuantity; number; Quantity invoiced against the purchase order schedule.
- Buyer; string; Person who is responsible for managing the purchase order.
- BuyerId; integer; Value that uniquely identifies the buyer.
- CreationDate; string; Date and time when the buyer or application created the purchase order schedule.
- DocumentStatus; string; Status of the purchase order relative to the purchase order life cycle.
- DocumentStyle; string; Name of the purchasing document style. This attribute allows organizations to control the parameters and values displayed on the application to match the usage of the purchasing document.
- FundsStatus; string; Status of the funds check or funds reservation validation result for the schedule.
- InvoiceMatchOption; string; Value that determines whether to match the invoice to the purchase order or the receipt. If the purchase order line is under consignment, then match each invoice to the consumption advice.
- LineLocationId; integer; Value that uniquely identifies the purchase order schedule.
- LineNumber; number; Number that uniquely identifies the purchase order line.
- OrderNumber; string; Number that uniquely identifies the purchase order in the sold-to legal entity.
- POHeaderId; integer; Value that uniquely identifies the purchase order.
- ProcurementBU; string; Business unit that manages and owns the purchase order.
- RequestedDeliveryDate; string; Date when the buyer requested that the supplier deliver the item.
- RequisitioningBU; string; Business unit that creates the requisition.
- ScheduleNumber; integer; Number that uniquely identifies the purchase order schedule for the purchase order line.
- ScheduleStatus; string; Status of the purchase order schedule.
- SoldToLegalEntity; string; Legal entity that is financially responsible for purchases on the purchase order.
- Supplier; string; Name of the supplier who fulfills the item.
- SupplierSite; string; Location that the supplier uses to purchase the item.
-
totalResults: boolean
The resource collection representation will include the "estimated row count" when "?totalResults=true", otherwise the count is not included. The default value is "false".
-
Effective-Of: string
This header accepts a string value. The string is a semi-colon separated list of
= . It is used to perform effective date range operations. The accepted parameters are RangeMode, RangeSpan, RangeStartDate, RangeEndDate, RangeStartSequence and RangeEndSequence. The parameter values are always strings. The possible values for RangeMode are SET_LOGICAL_START, SET_LOGICAL_END, END_DATE, SET_EFFECTIVE_START, SET_EFFECTIVE_END, REPLACE_CORRECTION, REPLACE_UPDATE, RECONCILE_CORRECTION, CORRECTION, RECONCILE_UPDATE, UPDATE, ZAP and DELETE_CHANGES. The possible values for RangeSpan are PHYSICAL_ROW_END_DATE and LOGICAL_ROW_END_DATE. The values for RangeStartDate and RangeEndDate have to be a string representation of a date in yyyy-MM-dd format. The value for RangeStartSequence and RangeEndSequence must be strings such that when parsed they yield positive integers. -
Metadata-Context: string
If the REST API supports runtime customizations, the shape of the service may change during runtime. The REST client may isolate itself from these changes or choose to interact with the latest version of the API by specifying this header. For example: Metadata-Context:sandbox="TrackEmployeeFeature".
-
REST-Framework-Version: string
The protocol version between a REST client and service. If the client does not specify this header in the request the server will pick a default version for the API.
There's no request body for this operation.
Back to TopResponse
- application/json
Default Response
-
Metadata-Context:
If the REST API supports runtime customizations, the shape of the service may change during runtime. The REST client may isolate itself from these changes or choose to interact with the latest version of the API by specifying this header. For example: Metadata-Context:sandbox="TrackEmployeeFeature".
-
REST-Framework-Version:
The protocol version between a REST client and service. If the client does not specify this header in the request the server will pick a default version for the API.
object-
count(required): integer
The number of resource instances returned in the current range.
-
hasMore(required): boolean
Indicates whether more resources are available on the server than the subset returned in the response. If the value is true, then there are more resources to retrieve from the server. The default value is false.
-
items: array
Items
Title:
ItemsThe items in the collection. -
limit(required): integer
The actual paging size used by the server.
-
links(required): array
Links
Title:
LinksThe link relations associated with the resource instance. -
offset(required): integer
The offset value used in the current page.
-
totalResults: integer
The estimated row count when "?totalResults=true", otherwise the count is not included.
arrayLinksobject-
AcceptedAmount: number
Title:
Accepted AmountRead Only:trueAmount accepted for service lines. -
AcceptedQuantity: number
Title:
Accepted QuantityRead Only:trueQuantity accepted after inspection. -
AccrueAtReceiptFlag: boolean
Title:
Accrue at ReceiptRead Only:trueMaximum Length:1Contains one of the following values: true or false. If true, then accrue the purchase order schedule upon receipt. If false, then do not accrue upon receipt. -
Amount: number
Title:
OrderedRead Only:trueAmount for the service on the purchase order schedule. -
AnticipatedArrivalDate: string
(date)
Title:
Anticipated Arrival DateRead Only:trueDate when the ordered goods are expected to be delivered based on the current projected date of shipping. -
BilledAmount: number
Title:
Invoiced AmountRead Only:trueAmount equivalent of the matched invoice lines based on the purchase price. -
BilledQuantity: number
Title:
Invoiced QuantityRead Only:trueQuantity invoiced against the purchase order schedule. -
Buyer: string
Title:
BuyerRead Only:trueMaximum Length:240Person who is responsible for managing the purchase order. -
BuyerId: integer
(int64)
Read Only:
trueValue that uniquely identifies the buyer. -
Category: string
Title:
Category NameRead Only:trueMaximum Length:2400Name of the purchasing category that the purchase order uses to classify the purchase for the order line. -
CategoryCode: string
Read Only:
trueMaximum Length:820Abbreviation that identifies the purchasing category. -
CategoryId: integer
(int64)
Read Only:
trueValue that uniquely identifies the purchasing category. -
ClosedReason: string
Title:
Closed ReasonRead Only:trueMaximum Length:240Text that describes the reason why the schedule was closed. -
CreationDate: string
(date-time)
Title:
Creation DateRead Only:trueDate and time when the buyer or application created the purchase order schedule. -
DocumentStatus: string
Title:
Order StatusRead Only:trueMaximum Length:80Status of the purchase order relative to the purchase order life cycle. -
DocumentStatusCode: string
Title:
Document Status CodeRead Only:trueMaximum Length:25Abbreviation that identifies the purchase order status in the order life cycle. -
DocumentStyle: string
Title:
Document StyleRead Only:trueMaximum Length:240Name of the purchasing document style. This attribute allows organizations to control the parameters and values displayed on the application to match the usage of the purchasing document. -
DocumentStyleId: integer
(int64)
Read Only:
trueValue that uniquely identifies the purchasing style of the document. -
DueDate: string
(date)
Title:
Due DateRead Only:trueDate when the goods are requested or promised to deliver. -
FreightTerms: string
Title:
Freight TermsRead Only:trueMaximum Length:80Terms that describe who pays the charges to transport the item. -
FreightTermsCode: string
Title:
Freight Terms CodeRead Only:trueMaximum Length:30Abbreviation that identifies the type of freight terms for the purchase order. -
FundsStatus: string
Title:
Funds StatusRead Only:trueMaximum Length:80Status of the funds check or funds reservation validation result for the schedule. -
FundsStatusCode: string
Title:
Funds StatusRead Only:trueMaximum Length:25Abbreviation that identifies the funds status. -
InvoiceMatchOption: string
Title:
Invoice Match OptionRead Only:trueMaximum Length:80Value that determines whether to match the invoice to the purchase order or the receipt. If the purchase order line is under consignment, then match each invoice to the consumption advice. -
InvoiceMatchOptionCode: string
Title:
Invoice Match Option CodeRead Only:trueMaximum Length:25Determines whether the invoice for the purchase order schedule must match the purchase order or the receipt. Values include C for consumption advice, P for order, or R for receipt. -
ItemDescription: string
Title:
DescriptionRead Only:trueMaximum Length:240Description of the item that the purchase order references. -
ItemId: integer
(int64)
Read Only:
trueValue that uniquely identifies the item on the purchase order. -
ItemNumber: string
Title:
ItemRead Only:trueAbbreviation that uniquely identifies the item on the purchase order. -
ItemOrScheduleDescription: string
Title:
DescriptionRead Only:trueMaximum Length:255Displays either the description of the item or of the work associated with a progress payment schedule. -
LineLocationId: integer
(int64)
Read Only:
trueValue that uniquely identifies the purchase order schedule. -
LineNumber: number
Title:
LineRead Only:trueNumber that uniquely identifies the purchase order line. -
LineNumberScheduleNumber: string
Title:
Line - ScheduleRead Only:trueMaximum Length:255Concatenation of the PO line number and the schedule number. -
links: array
Links
Title:
LinksThe link relations associated with the resource instance. -
OrderNumber: string
Title:
OrderRead Only:trueMaximum Length:30Number that uniquely identifies the purchase order in the sold-to legal entity. -
PaymentTerms: string
Title:
Payment TermsRead Only:trueMaximum Length:50Terms that the application uses to schedule payments and calculate due dates, discount dates, and discount amounts for each invoice against the purchase order. -
PaymentTermsId: integer
(int64)
Read Only:
trueValue that uniquely identifies the payment terms. -
POHeaderId: integer
(int64)
Read Only:
trueValue that uniquely identifies the purchase order. -
POLineId: integer
(int64)
Read Only:
trueValue that uniquely identifies the parent line of the schedule. This attribute is used when the schedule is split. -
Price: number
Title:
PriceRead Only:truePrice of the purchase order line. -
ProcurementBU: string
Title:
Procurement BURead Only:trueMaximum Length:240Business unit that manages and owns the purchase order. -
ProcurementBUId: integer
(int64)
Read Only:
trueValue that uniquely identifies the business unit that manages and owns the purchase order. -
PurchaseBasis: string
Title:
Purchase BasisRead Only:trueMaximum Length:80Value that indicates whether the schedule is for goods or services. -
PurchaseBasisCode: string
Title:
Purchase Basis CodeRead Only:trueMaximum Length:30Abbreviation that indicates if the schedule is for quantity based purchases or fixed price services. -
Quantity: number
Title:
QuantityRead Only:trueQuantity of the item scheduled to be shipped or delivered. -
ReceivedAmount: number
Title:
Received AmountRead Only:trueAmount received for service lines. -
ReceivedQuantity: number
Title:
Received QuantityRead Only:trueQuantity received against the purchase order schedule. -
RequestedDeliveryDate: string
(date)
Title:
Requested Delivery DateRead Only:trueDate when the buyer requested that the supplier deliver the item. -
RequestedShipDate: string
(date)
Title:
Requested Ship DateRead Only:trueDate when the buyer requested that the supplier ship the item. -
RequisitioningBU: string
Title:
Requisitioning BURead Only:trueMaximum Length:240Business unit that creates the requisition. -
RequisitioningBUId: integer
(int64)
Read Only:
trueValue that uniquely identifies the business unit that creates the requisition. -
RetainageAmount: number
Title:
RetainageRead Only:trueTotal amount withheld as retainage against the schedule. -
RetainageRate: number
Title:
Retainage RateRead Only:truePercentage of the invoice value that can be withheld as retainage. -
RetainageReleasedAmount: number
Title:
Retainage ReleasedRead Only:trueAmount of retainage released for the schedule. -
ScheduleDescription: string
Title:
Schedule DescriptionRead Only:trueMaximum Length:240Description of the work associated with a progress payment schedule. -
ScheduleNumber: integer
Title:
ScheduleRead Only:trueNumber that uniquely identifies the purchase order schedule for the purchase order line. -
ScheduleStatus: string
Title:
StatusRead Only:trueMaximum Length:80Status of the purchase order schedule. -
ScheduleStatusCode: string
Title:
Status CodeRead Only:trueMaximum Length:25Abbreviation that identifies the status of the purchase order schedule. -
ScheduleType: string
Title:
Schedule TypeRead Only:trueMaximum Length:80Value that identifies whether the payment is released based on units of work or lump sum. -
ScheduleTypeCode: string
Read Only:
trueMaximum Length:30Abbreviation that identifies the schedule type. -
ShippedAmount: number
Title:
Shipped AmountRead Only:trueAmount shipped for service lines. -
ShippedQuantity: number
Title:
Shipped QuantityRead Only:trueQuantity shipped against the purchase order schedule. -
ShipToCustomer: string
Title:
Ship-to PartyRead Only:trueMaximum Length:360Name of the party who receives the item that the supplier ships. -
ShipToCustomerId: integer
(int64)
Read Only:
trueValue that uniquely identifies the third party that receives the item. -
ShipToLocation: string
Title:
Ship-to LocationRead Only:trueMaximum Length:240Name of the location where the supplier ships the item. -
ShipToLocationCode: string
Title:
Ship-to Location CodeRead Only:trueMaximum Length:60Abbreviation that identifies the location where the supplier ships the item. -
ShipToLocationId: integer
(int64)
Read Only:
trueValue that uniquely identifies the location where the supplier ships the item. -
SoldToLegalEntity: string
Title:
Sold-to Legal EntityRead Only:trueMaximum Length:240Legal entity that is financially responsible for purchases on the purchase order. -
SoldToLegalEntityId: integer
(int64)
Read Only:
trueValue that uniquely identifies the legal entity that is financially responsible for purchases on the purchase order. -
Supplier: string
Title:
SupplierRead Only:trueMaximum Length:360Name of the supplier who fulfills the item. -
SupplierId: integer
(int64)
Read Only:
trueValue that uniquely identifies the supplier. -
SupplierItem: string
Title:
Supplier ItemRead Only:trueMaximum Length:300Number that the supplier uses to identify the item on the purchase order line. -
SupplierSite: string
Title:
Supplier SiteRead Only:trueMaximum Length:240Location that the supplier uses to purchase the item. -
SupplierSiteId: integer
(int64)
Read Only:
trueValue that uniquely identifies the supplier site. -
Total: number
Title:
TotalRead Only:trueTotal of the ordered amount and the exclusive tax amounts on the purchase order line. -
TotalTax: number
Title:
Total TaxRead Only:trueTotal of the exclusive tax amounts that the purchaser can recover and not recover for the purchase order line. -
UOM: string
Title:
UOMRead Only:trueMaximum Length:25Unit of measure in the item quantity. -
UOMCode: string
Read Only:
trueMaximum Length:3Abbreviation that identifies the unit of measure.
arrayLinksobject-
href: string
Title:
hyperlink referenceThe URI to the related resource. -
kind: string
Title:
kindAllowed Values:[ "collection", "item", "describe", "other" ]The kind of the related resource. -
name: string
Title:
nameThe name of the link to the related resource. -
properties: object
properties
-
rel: string
Title:
relationAllowed Values:[ "self", "lov", "parent", "canonical", "child", "enclosure", "action", "custom" ]The name of the relation to the resource instance. Example: self.
object-
changeIndicator: string
Change indicator or the ETag value of the resource instance.
Examples
This example describes how to get all schedules.
| Example | Description |
|---|---|
| Example 1 | Gets all schedules across multiple orders |
| Example 2 | Get all schedules for all the lines in an order |
| Example 3 | Get a specific schedule for a line in an order |
| Example 4 | Get all schedules that are finally closed |
Example 1 cURL Command
Use the following cURL command to submit a request on the REST resource to get all schedules across multiple orders:
curl -u username:password "https://servername/fscmRestApi/resources/version/purchaseOrderSchedules"
Example 1 Response Body
The following shows an example of the response body in JSON format.
{
"items": [
{
"SoldToLegalEntityId": 1036,
"POHeaderId": 300100182700591,
"OrderNumber": "80",
"BuyerId": 100010026863783,
"POLineId": 300100182700592,
"ItemDescription": "Drop Ship Item 01 for DS as Seller flow",
"ItemId": 300100182698836,
"Price": 100,
"LineNumber": 1,
"UOMCode": "Ea",
"SupplierItem": null,
"CategoryId": 1,
"LineLocationId": 300100182700593,
"ScheduleNumber": 1,
"ShipToLocationId": null,
"RequestedDeliveryDate": "2019-09-06T00:00:00+00:00",
"ScheduleStatusCode": "OPEN",
"ClosedReason": null,
"InvoiceMatchOptionCode": "P",
"BilledQuantity": 0,
"ShippedQuantity": 0,
"ReceivedQuantity": 0,
"AcceptedQuantity": 0,
"BilledAmount": null,
"ShippedAmount": null,
"ReceivedAmount": null,
"AcceptedAmount": null,
"ShipToCustomerId": 300100059769352,
"SoldToLegalEntity": "Vision Brazil",
"UOM": "Each",
"ShipToLocationCode": null,
"ScheduleStatus": "Open",
"PaymentTermsId": 10001,
"FreightTermsCode": "Due",
"Category": "Miscellaneous_1",
"CategoryCode": "MISC.MISC",
"Buyer": "Furey,Clare",
"InvoiceMatchOption": "Order",
"PaymentTerms": "Immediate",
"FreightTerms": "Due",
"ShipToCustomer": "BR Fusion S.A.",
"PurchaseBasisCode": "GOODS",
"ItemNumber": "BRDS01",
"Total": 1000,
"TotalTax": 0,
"PurchaseBasis": "Quantity",
"Quantity": 10,
"Amount": 1000,
"ShipToLocation": null,
"DocumentStatusCode": "OPEN",
"DocumentStatus": "Open",
"AnticipatedArrivalDate": null,
"CreationDate": "2019-09-06T20:45:39+00:00",
"RequestedShipDate": null,
"Supplier": "Brazil DS Ltda.",
"SupplierId": 300100182014594,
"SupplierSiteId": 300100182014808,
"SupplierSite": "MAIN",
"RetainageRate": null,
"Retainage": null,
"RetainageReleased": null,
"links": [
{
"rel": "self",
"href": "https://servername/fscmRestApi/resources/version/purchaseOrderSchedules/300100182700593",
"name": "purchaseOrderSchedules",
"kind": "item"
},
{
"rel": "canonical",
"href": "https://servername/fscmRestApi/resources/version/purchaseOrderSchedules/300100182700593",
"name": "purchaseOrderSchedules",
"kind": "item"
},
{
"rel": "action",
"href": "https://servername/fscmRestApi/resources/version/purchaseOrderSchedules/300100182700593/action/close",
"name": "close",
"kind": "other"
}
]
},
{
"SoldToLegalEntityId": 1036,
"POHeaderId": 300100127172094,
"OrderNumber": "57",
"BuyerId": 100010026863783,
"POLineId": 300100127172096,
"ItemDescription": "AS88871 - Lot Item",
"ItemId": 300100127166055,
"Price": 80,
"LineNumber": 1,
"UOMCode": "Ea",
"SupplierItem": null,
"CategoryId": 1,
"LineLocationId": 300100127172097,
"ScheduleNumber": 1,
"ShipToLocationId": null,
"RequestedDeliveryDate": "2018-01-16T00:00:00+00:00",
"ScheduleStatusCode": "OPEN",
"ClosedReason": null,
"InvoiceMatchOptionCode": "P",
"BilledQuantity": 0,
"ShippedQuantity": 0,
"ReceivedQuantity": 0,
"AcceptedQuantity": 0,
"BilledAmount": null,
"ShippedAmount": null,
"ReceivedAmount": null,
"AcceptedAmount": null,
"ShipToCustomerId": 300100127998527,
"SoldToLegalEntity": "Vision Brazil",
"UOM": "Each",
"ShipToLocationCode": null,
"ScheduleStatus": "Open",
"PaymentTermsId": 10134,
"FreightTermsCode": "Due",
"Category": "Miscellaneous_1",
"CategoryCode": "MISC.MISC",
"Buyer": "Furey,Clare",
"InvoiceMatchOption": "Order",
"PaymentTerms": "Net 30",
"FreightTerms": "Due",
"ShipToCustomer": "Brazil_Customer1",
"PurchaseBasisCode": "GOODS",
"ItemNumber": "AS88871",
"Total": 8000,
"TotalTax": 0,
"PurchaseBasis": "Quantity",
"Quantity": 100,
"Amount": 8000,
"ShipToLocation": null,
"DocumentStatusCode": "OPEN",
"DocumentStatus": "Open",
"AnticipatedArrivalDate": null,
"CreationDate": "2018-01-16T13:19:31+00:00",
"RequestedShipDate": null,
"Supplier": "Marcopolo",
"SupplierId": 300100093494034,
"SupplierSiteId": 300100093494050,
"SupplierSite": "Rio Branco",
"RetainageRate": null,
"Retainage": null,
"RetainageReleased": null,
"links": [
{
"rel": "self",
"href": "https://servername/fscmRestApi/resources/version/purchaseOrderSchedules/300100127172097",
"name": "purchaseOrderSchedules",
"kind": "item"
},
{
"rel": "canonical",
"href": "https://servername/fscmRestApi/resources/version/purchaseOrderSchedules/300100127172097",
"name": "purchaseOrderSchedules",
"kind": "item"
},
{
"rel": "action",
"href": "https://servername/fscmRestApi/resources/version/purchaseOrderSchedules/300100127172097/action/close",
"name": "close",
"kind": "other"
}
]
}
],
"count": 2,
"hasMore": true,
"limit": 25,
"offset": 0,
"links": [
{
"rel": "self",
"href": "https://servername/fscmRestApi/resources/version/purchaseOrderSchedules",
"name": "purchaseOrderSchedules",
"kind": "collection"
}
]
}
Example 2 cURL Command
Use the following cURL command to submit a request on the REST resource to get all schedules for all the lines in an order:
curl -u username:password "https://servername/fscmRestApi/resources/version/purchaseOrderSchedules?q=OrderNumber='68'"
Example 2 Response Body
The following shows an example of the response body in JSON format.
{
"items": [
{
"SoldToLegalEntityId": 1036,
"POHeaderId": 300100151188247,
"OrderNumber": "68",
"BuyerId": 100010026863783,
"POLineId": 300100151188249,
"ItemDescription": "Brazil Cement",
"ItemId": 300100068025061,
"Price": 100,
"LineNumber": 1,
"UOMCode": "BOX",
"SupplierItem": null,
"CategoryId": 1,
"LineLocationId": 300100151188250,
"ScheduleNumber": 1,
"ShipToLocationId": 300100060012091,
"RequestedDeliveryDate": "2018-04-20T00:00:00+00:00",
"ScheduleStatusCode": "OPEN",
"ClosedReason": null,
"InvoiceMatchOptionCode": "C",
"BilledQuantity": 0,
"ShippedQuantity": 0,
"ReceivedQuantity": 7,
"AcceptedQuantity": 0,
"BilledAmount": null,
"ShippedAmount": null,
"ReceivedAmount": 0,
"AcceptedAmount": null,
"ShipToCustomerId": null,
"SoldToLegalEntity": "Vision Operations",
"UOM": "BOX",
"ShipToLocationCode": "Vision Operations Sao Paulo Site 1",
"ScheduleStatus": "Open",
"PaymentTermsId": 10134,
"FreightTermsCode": "Due",
"Category": "Miscellaneous_1",
"CategoryCode": "MISC.MISC",
"Buyer": "Furey,Clare",
"InvoiceMatchOption": "Consumption Advice",
"PaymentTerms": "Net 30",
"FreightTerms": "Due",
"ShipToCustomer": null,
"PurchaseBasisCode": "GOODS",
"ItemNumber": "BR01",
"Total": 10000000,
"TotalTax": 0,
"PurchaseBasis": "Quantity",
"Quantity": 100000,
"Amount": 10000000,
"ShipToLocation": "Vision Operations Sao Paulo Site 1",
"DocumentStatusCode": "OPEN",
"DocumentStatus": "Open",
"AnticipatedArrivalDate": null,
"CreationDate": "2018-04-20T09:34:32+00:00",
"RequestedShipDate": null,
"Supplier": "Jones",
"SupplierId": 300100093494034,
"SupplierSiteId": 300100093494050,
"SupplierSite": "Rio Branco",
"links": [
{
"rel": "self",
"href": "https://servername/fscmRestApi/resources/version/purchaseOrderSchedules/300100151188250",
"name": "purchaseOrderSchedules",
"kind": "item"
},
{
"rel": "canonical",
"href": "https://servername/fscmRestApi/resources/version/purchaseOrderSchedules/300100151188250",
"name": "purchaseOrderSchedules",
"kind": "item"
},
{
"rel": "action",
"href": "https://servername/fscmRestApi/resources/version/purchaseOrderSchedules/300100151188250/action/close",
"name": "close",
"kind": "other"
}
]
},
{
"SoldToLegalEntityId": 1036,
"POHeaderId": 300100151188247,
"OrderNumber": "68",
"BuyerId": 100010026863783,
"POLineId": 300100151188252,
"ItemDescription": "Brazil Purchased Item 02",
"ItemId": 300100068025063,
"Price": 110,
"LineNumber": 2,
"UOMCode": "BOX",
"SupplierItem": null,
"CategoryId": 1,
"LineLocationId": 300100151188253,
"ScheduleNumber": 1,
"ShipToLocationId": 300100060012091,
"RequestedDeliveryDate": "2018-04-20T00:00:00+00:00",
"ScheduleStatusCode": "OPEN",
"ClosedReason": null,
"InvoiceMatchOptionCode": "C",
"BilledQuantity": 0,
"ShippedQuantity": 0,
"ReceivedQuantity": 0,
"AcceptedQuantity": 0,
"BilledAmount": null,
"ShippedAmount": null,
"ReceivedAmount": null,
"AcceptedAmount": null,
"ShipToCustomerId": null,
"SoldToLegalEntity": "Vision Operations",
"UOM": "BOX",
"ShipToLocationCode": "Vision Operations Sao Paulo Site 1",
"ScheduleStatus": "Open",
"PaymentTermsId": 10134,
"FreightTermsCode": "Due",
"Category": "Miscellaneous_1",
"CategoryCode": "MISC.MISC",
"Buyer": "Furey,Clare",
"InvoiceMatchOption": "Consumption Advice",
"PaymentTerms": "Net 30",
"FreightTerms": "Due",
"ShipToCustomer": null,
"PurchaseBasisCode": "GOODS",
"ItemNumber": "BR02",
"Total": 11000000,
"TotalTax": 0,
"PurchaseBasis": "Quantity",
"Quantity": 100000,
"Amount": 11000000,
"ShipToLocation": "Vision Operations Sao Paulo Site 1",
"DocumentStatusCode": "OPEN",
"DocumentStatus": "Open",
"AnticipatedArrivalDate": null,
"CreationDate": "2018-04-20T09:34:32+00:00",
"RequestedShipDate": null,
"Supplier": "Jones",
"SupplierId": 300100093494034,
"SupplierSiteId": 300100093494050,
"SupplierSite": "Rio Branco",
"links": [
{
"rel": "self",
"href": "https://servername/fscmRestApi/resources/version/purchaseOrderSchedules/300100151188253",
"name": "purchaseOrderSchedules",
"kind": "item"
},
{
"rel": "canonical",
"href": "https://servername/fscmRestApi/resources/version/purchaseOrderSchedules/300100151188253",
"name": "purchaseOrderSchedules",
"kind": "item"
},
{
"rel": "action",
"href": "https://servername/fscmRestApi/resources/version/purchaseOrderSchedules/300100151188253/action/close",
"name": "close",
"kind": "other"
}
]
},
{
"SoldToLegalEntityId": 300100014516903,
"POHeaderId": 426036,
"OrderNumber": "68",
"BuyerId": 300100024668707,
"POLineId": 385191,
"ItemDescription": "Std",
"ItemId": null,
"Price": 100.25,
"LineNumber": 1,
"UOMCode": "Ea",
"SupplierItem": null,
"CategoryId": 1,
"LineLocationId": 368264,
"ScheduleNumber": 1,
"ShipToLocationId": 300100014484337,
"RequestedDeliveryDate": "2015-12-03T13:53:20+00:00",
"ScheduleStatusCode": "OPEN",
"ClosedReason": null,
"InvoiceMatchOptionCode": "P",
"BilledQuantity": 0,
"ShippedQuantity": 0,
"ReceivedQuantity": 0,
"AcceptedQuantity": 0,
"BilledAmount": null,
"ShippedAmount": null,
"ReceivedAmount": null,
"AcceptedAmount": null,
"ShipToCustomerId": null,
"SoldToLegalEntity": "Vision City LE",
"UOM": "Each",
"ShipToLocationCode": "VC - Vision City",
"ScheduleStatus": "Open",
"PaymentTermsId": 10001,
"FreightTermsCode": null,
"Category": "Miscellaneous_1",
"CategoryCode": "MISC.MISC",
"Buyer": "Jones, Clare",
"InvoiceMatchOption": "Order",
"PaymentTerms": "Immediate",
"FreightTerms": null,
"ShipToCustomer": null,
"PurchaseBasisCode": "GOODS",
"ItemNumber": null,
"Total": 10025.00,
"TotalTax": 0,
"PurchaseBasis": "Quantity",
"Quantity": 100,
"Amount": 10025.00,
"ShipToLocation": "VC - Vision City",
"DocumentStatusCode": "OPEN",
"DocumentStatus": "Open",
"AnticipatedArrivalDate": null,
"CreationDate": "2015-12-03T13:53:21+00:00",
"RequestedShipDate": null,
"Supplier": "Green Corp.",
"SupplierId": 300100016486100,
"SupplierSiteId": 300100016486125,
"SupplierSite": "San Jose",
"links": [
{
"rel": "self",
"href": "https://servername/fscmRestApi/resources/version/purchaseOrderSchedules/368264",
"name": "purchaseOrderSchedules",
"kind": "item"
},
{
"rel": "canonical",
"href": "https://servername/fscmRestApi/resources/version/purchaseOrderSchedules/368264",
"name": "purchaseOrderSchedules",
"kind": "item"
},
{
"rel": "action",
"href": "https://servername/fscmRestApi/resources/version/purchaseOrderSchedules/368264/action/close",
"name": "close",
"kind": "other"
}
]
}
],
"count": 3,
"hasMore": false,
"limit": 25,
"offset": 0,
"links": [
{
"rel": "self",
"href": "https://servername/fscmRestApi/resources/version/purchaseOrderSchedules",
"name": "purchaseOrderSchedules",
"kind": "collection"
}
]
}
Example 3 cURL Command
Use the following cURL command to submit a request on the REST resource to get a specific schedule for a line in an order:
curl -u username:password "https://servername/fscmRestApi/resources/version/purchaseOrderSchedules?q=OrderNumber='68';LineNumber=1;ScheduleNumber=1"
Example 3 Response Body
The following shows an example of the response body in JSON format.
{
"items": [
{
"SoldToLegalEntityId": 1036,
"POHeaderId": 300100151188247,
"OrderNumber": "68",
"BuyerId": 100010026863783,
"POLineId": 300100151188249,
"ItemDescription": "Brazil Cement",
"ItemId": 300100068025061,
"Price": 100,
"LineNumber": 1,
"UOMCode": "BOX",
"SupplierItem": null,
"CategoryId": 1,
"LineLocationId": 300100151188250,
"ScheduleNumber": 1,
"ShipToLocationId": 300100060012091,
"RequestedDeliveryDate": "2018-04-20T00:00:00+00:00",
"ScheduleStatusCode": "OPEN",
"ClosedReason": null,
"InvoiceMatchOptionCode": "C",
"BilledQuantity": 0,
"ShippedQuantity": 0,
"ReceivedQuantity": 7,
"AcceptedQuantity": 0,
"BilledAmount": null,
"ShippedAmount": null,
"ReceivedAmount": 0,
"AcceptedAmount": null,
"ShipToCustomerId": null,
"SoldToLegalEntity": "Vision Brazil",
"UOM": "BOX",
"ShipToLocationCode": "Vision Brazil Sao Paulo Site 1",
"ScheduleStatus": "Open",
"PaymentTermsId": 10134,
"FreightTermsCode": "Due",
"Category": "Miscellaneous_1",
"CategoryCode": "MISC.MISC",
"Buyer": "Jones, Clare",
"InvoiceMatchOption": "Consumption Advice",
"PaymentTerms": "Net 30",
"FreightTerms": "Due",
"ShipToCustomer": null,
"PurchaseBasisCode": "GOODS",
"ItemNumber": "BR01",
"Total": 10000000,
"TotalTax": 0,
"PurchaseBasis": "Quantity",
"Quantity": 100000,
"Amount": 10000000,
"ShipToLocation": "Vision Brazil Sao Paulo Site 1",
"DocumentStatusCode": "OPEN",
"DocumentStatus": "Open",
"AnticipatedArrivalDate": null,
"CreationDate": "2018-04-20T09:34:32+00:00",
"RequestedShipDate": null,
"Supplier": "Marcopolo",
"SupplierId": 300100093494034,
"SupplierSiteId": 300100093494050,
"SupplierSite": "Rio Branco",
"RetainageRate": null,
"Retainage": null,
"RetainageReleased": null,
"links": [
{
"rel": "self",
"href": "https://servername/fscmRestApi/resources/version/purchaseOrderSchedules/300100151188250",
"name": "purchaseOrderSchedules",
"kind": "item"
},
{
"rel": "canonical",
"href": "https://servername/fscmRestApi/resources/version/purchaseOrderSchedules/300100151188250",
"name": "purchaseOrderSchedules",
"kind": "item"
},
{
"rel": "action",
"href": "https://servername/fscmRestApi/resources/version/purchaseOrderSchedules/300100151188250/action/close",
"name": "close",
"kind": "other"
}
]
},
{
"SoldToLegalEntityId": 300100014516903,
"POHeaderId": 426036,
"OrderNumber": "68",
"BuyerId": 300100024668707,
"POLineId": 385191,
"ItemDescription": "Std",
"ItemId": null,
"Price": 100.25,
"LineNumber": 1,
"UOMCode": "Ea",
"SupplierItem": null,
"CategoryId": 1,
"LineLocationId": 368264,
"ScheduleNumber": 1,
"ShipToLocationId": 300100014484337,
"RequestedDeliveryDate": "2015-12-03T13:53:20+00:00",
"ScheduleStatusCode": "OPEN",
"ClosedReason": null,
"InvoiceMatchOptionCode": "P",
"BilledQuantity": 0,
"ShippedQuantity": 0,
"ReceivedQuantity": 0,
"AcceptedQuantity": 0,
"BilledAmount": null,
"ShippedAmount": null,
"ReceivedAmount": null,
"AcceptedAmount": null,
"ShipToCustomerId": null,
"SoldToLegalEntity": "Vision City LE",
"UOM": "Each",
"ShipToLocationCode": "VC - Vision City",
"ScheduleStatus": "Open",
"PaymentTermsId": 10001,
"FreightTermsCode": null,
"Category": "Miscellaneous_1",
"CategoryCode": "MISC.MISC",
"Buyer": "Jones, Clare",
"InvoiceMatchOption": "Order",
"PaymentTerms": "Immediate",
"FreightTerms": null,
"ShipToCustomer": null,
"PurchaseBasisCode": "GOODS",
"ItemNumber": null,
"Total": 10025.00,
"TotalTax": 0,
"PurchaseBasis": "Quantity",
"Quantity": 100,
"Amount": 10025.00,
"ShipToLocation": "VC - Vision City",
"DocumentStatusCode": "OPEN",
"DocumentStatus": "Open",
"AnticipatedArrivalDate": null,
"CreationDate": "2015-12-03T13:53:21+00:00",
"RequestedShipDate": null,
"Supplier": "Office Depot",
"SupplierId": 300100016486100,
"SupplierSiteId": 300100016486125,
"SupplierSite": "San Jose",
"RetainageRate": null,
"Retainage": null,
"RetainageReleased": null,
"links": [
{
"rel": "self",
"href": "https://servername/fscmRestApi/resources/version/purchaseOrderSchedules/368264",
"name": "purchaseOrderSchedules",
"kind": "item"
},
{
"rel": "canonical",
"href": "https://servername/fscmRestApi/resources/version/purchaseOrderSchedules/368264",
"name": "purchaseOrderSchedules",
"kind": "item"
},
{
"rel": "action",
"href": "https://servername/fscmRestApi/resources/version/purchaseOrderSchedules/368264/action/close",
"name": "close",
"kind": "other"
}
]
}
],
"count": 2,
"hasMore": false,
"limit": 25,
"offset": 0,
"links": [
{
"rel": "self",
"href": "https://servername/fscmRestApi/resources/version/purchaseOrderSchedules",
"name": "purchaseOrderSchedules",
"kind": "collection"
}
]
}
Example 4 cURL Command
Use the following cURL command to submit a request on the REST resource to get all schedules that are finally closed:
curl -u username:password "https://servername/fscmRestApi/resources/version/purchaseOrderSchedules?q=ScheduleStatus='Finally+Closed'"
Example 4 Response Body
The following shows an example of the response body in JSON format.
{
"items": [
{
"SoldToLegalEntityId": 300100014516903,
"POHeaderId": 424995,
"OrderNumber": "28",
"BuyerId": 300100024668707,
"POLineId": 383851,
"ItemDescription": "POw/oItem",
"ItemId": null,
"Price": 10,
"LineNumber": 2,
"UOMCode": "Ea",
"SupplierItem": null,
"CategoryId": 1,
"LineLocationId": 367444,
"ScheduleNumber": 1,
"ShipToLocationId": 300100014484337,
"RequestedDeliveryDate": null,
"ScheduleStatusCode": "FINALLY CLOSED",
"ClosedReason": null,
"InvoiceMatchOptionCode": "P",
"BilledQuantity": 0,
"ShippedQuantity": 0,
"ReceivedQuantity": 0.5,
"AcceptedQuantity": 0,
"BilledAmount": null,
"ShippedAmount": null,
"ReceivedAmount": 0,
"AcceptedAmount": null,
"ShipToCustomerId": null,
"SoldToLegalEntity": "Vision City LE",
"UOM": "Each",
"ShipToLocationCode": "VC - Vision City",
"ScheduleStatus": "Finally Closed",
"PaymentTermsId": 10001,
"FreightTermsCode": null,
"Category": "Miscellaneous_1",
"CategoryCode": "MISC.MISC",
"Buyer": "Jones, Clare",
"InvoiceMatchOption": "Order",
"PaymentTerms": "Immediate",
"FreightTerms": null,
"ShipToCustomer": null,
"PurchaseBasisCode": "GOODS",
"ItemNumber": null,
"Total": 10,
"TotalTax": 0,
"PurchaseBasis": "Quantity",
"Quantity": 1,
"Amount": 10,
"ShipToLocation": "VC - Vision City",
"DocumentStatusCode": "FINALLY CLOSED",
"DocumentStatus": "Finally Closed",
"AnticipatedArrivalDate": null,
"CreationDate": "2014-08-07T15:22:57+00:00",
"RequestedShipDate": null,
"Supplier": "Office Depot",
"SupplierId": 300100016486100,
"SupplierSiteId": 300100016486125,
"SupplierSite": "San Jose",
"RetainageRate": null,
"Retainage": null,
"RetainageReleased": null,
"links": [
{
"rel": "self",
"href": "https://servername/fscmRestApi/resources/version/purchaseOrderSchedules/367444",
"name": "purchaseOrderSchedules",
"kind": "item"
},
{
"rel": "canonical",
"href": "https://servername/fscmRestApi/resources/version/purchaseOrderSchedules/367444",
"name": "purchaseOrderSchedules",
"kind": "item"
},
{
"rel": "action",
"href": "https://servername/fscmRestApi/resources/version/purchaseOrderSchedules/367444/action/close",
"name": "close",
"kind": "other"
}
]
}
],
"count": 1,
"hasMore": true,
"limit": 25,
"offset": 0,
"links": [
{
"rel": "self",
"href": "https://servername/fscmRestApi/resources/version/purchaseOrderSchedules",
"name": "purchaseOrderSchedules",
"kind": "collection"
}
]
}