Update one reservation

patch

/fscmRestApi/resources/11.13.18.05/inventoryReservations/{ReservationId}

Request

Path Parameters
Header Parameters
  • 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".
  • 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.
Supported Media Types
Request Body - application/json ()
Root Schema : schema
Type: object
Show Source
Nested Schema : Serials
Type: array
Title: Serials
The Serials resource manages serial numbers for reservations that reserve the on-hand supply. You can use it to create, read, update, or delete serials for a reservation.
Show Source
Nested Schema : inventoryReservations-serials-item-patch-request
Type: object
Show Source
  • Maximum Length: 80
    Serial number that identifies the item that this reservation uses. Applies when the warehouse places the item under serial control.
Back to Top

Response

Supported Media Types

Default Response

The following table describes the default response for this task.
Headers
  • 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".
  • 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.
Body ()
Root Schema : inventoryReservations-item-response
Type: object
Show Source
Nested Schema : Serials
Type: array
Title: Serials
The Serials resource manages serial numbers for reservations that reserve the on-hand supply. You can use it to create, read, update, or delete serials for a reservation.
Show Source
Nested Schema : inventoryReservations-serials-item-response
Type: object
Show Source
  • Links
  • Maximum Length: 80
    Serial number that identifies the item that this reservation uses. Applies when the warehouse places the item under serial control.
Back to Top

Examples

This example describes how to update a reservation.

Example cURL Command

Use the following cURL command to submit a request on the REST resource.

curl -X PATCH -u "username:password" -H "Content-Type: application/vnd.oracle.adf.resourceitem+json" -d 'request payload'  "https://servername/fscmRestApi/resources/version/inventoryReservations/ReservationId"

Example Request Body

The following example includes the contents of the request body in JSON format. You replace the request payload in the cURL command with the contents of the Example Request Body. The request payload specifies attribute values that the command will use in the record that it updates.

{
	"SupplySourceType":"On hand",
	"SupplyProjectId":100000015107659,
	"SupplyTaskId":100000015107691
}

Example Response Body

The following example includes the contents of the response body in JSON format:

{
	"ReservationId": 2634085,
	"OrganizationId": 207,
	"OrganizationCode": "M1",
	"InventoryItemId": 663997,
	"ItemNumber": "VC110",
	"DemandSourceTypeId": 2,
	"DemandSourceType": "Sales order",
	"DemandSourceHeaderId": 502091,
	"DemandSourceHeaderNumber": "SG-SO-91219-10",
	"DemandSourceName": null,
	"DemandSourceLineId": 3774397,
	"DemandSourceLineNumber": "4",
	"SourceFulfillmentLineId": 1004,
	"SupplySourceTypeId": 13,
	"SupplySourceType": "On hand",
	"SupplySourceHeaderId": null,
	"SupplySourceHeaderNumber": null,
	"SupplySourceLineId": null,
	"SupplySourceLineNumber": null,
	"Revision": null,
	"SubinventoryCode": null,
	"SubinventoryId": null,
	"LotNumber": null,
	"LocatorId": null,
	"Locator": null,
	"PrimaryReservationQuantity": 1,
	"PrimaryUOMCode": "Ea",
	"PrimaryUnitOfMeasure": "Each",
	"SecondaryReservationQuantity": null,
	"SecondaryUOMCode": null,
	"SecondaryUnitOfMeasure": null,
	"ReservationQuantity": 1,
	"ReservationUOMCode": "Ea",
	"ReservationUnitOfMeasure": "Each",
	"ShipToCustomer": null,
	"ShipToPartyId": null,
	"RequirementDate": "2019-12-09",
	"SupplyProjectId": 100000015107659,
	"SupplyTaskId": 100000015107691,
	"DemandProjectId": 100000015107659,
	"DemandTaskId": 100000015107691,
	"DemandProjectNumber": "zBI_Projinv-03",
	"DemandTaskNumber": "1.1",
	"SupplyProjectNumber": "zBI_Projinv-03",
	"SupplyTaskNumber": "1.1",
	"SourceFulfillmentLineNumber": "4",
	"links": [
	{...}
	]
}
Back to Top