Generate serial numbers
post
/fscmRestApi/resources/11.13.18.05/generateSerialNumbers
Request
Header Parameters
-
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.
Supported Media Types
- application/json
Root Schema : schema
Type:
Show Source
object
-
EndSerialNumber: string
Ending serial number in the range of serial numbers to create.
-
InventoryItemId: integer
Value that uniquely identifies the inventory item.
-
ItemNumber: string
Name of the inventory item.
-
NumberOfSerials: integer
Number of serial numbers to create.
-
OrganizationCode: string
Abbreviation that identifies the organization.
-
OrganizationId: string
Value that uniquely identifies the organization.
-
ReturnMessageName: string
Name of the error message when the request fails. If the request is successful, then this attribute value is empty.
-
ReturnMessageText: string
Text of the error message when the request fails. If the request is successful, then this attribute value is empty.
-
ReturnStatus: string
Status of the request to create serial numbers.
-
StartSerialNumber: string
Starting serial number in the range of serial numbers to create.
Response
Supported Media Types
- application/json
Default Response
The following table describes the default response for this task.
Headers
-
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.
Root Schema : generateSerialNumbers-item-response
Type:
Show Source
object
-
EndSerialNumber: string
Ending serial number in the range of serial numbers to create.
-
InventoryItemId: integer
Value that uniquely identifies the inventory item.
-
ItemNumber: string
Name of the inventory item.
-
links: array
Links
Title:
Links
The link relations associated with the resource instance. -
NumberOfSerials: integer
Number of serial numbers to create.
-
OrganizationCode: string
Abbreviation that identifies the organization.
-
OrganizationId: string
Value that uniquely identifies the organization.
-
ReturnMessageName: string
Name of the error message when the request fails. If the request is successful, then this attribute value is empty.
-
ReturnMessageText: string
Text of the error message when the request fails. If the request is successful, then this attribute value is empty.
-
ReturnStatus: string
Status of the request to create serial numbers.
-
StartSerialNumber: string
Starting serial number in the range of serial numbers to create.
Nested Schema : Links
Type:
array
Title:
Links
The link relations associated with the resource instance.
Show Source
Nested Schema : link
Type:
Show Source
object
-
href: string
Title:
hyperlink reference
The URI to the related resource. -
kind: string
Title:
kind
Allowed Values:[ "collection", "item", "describe", "other" ]
The kind of the related resource. -
name: string
Title:
name
The name of the link to the related resource. -
properties: object
properties
-
rel: string
Title:
relation
Allowed Values:[ "self", "lov", "parent", "canonical", "child", "enclosure", "action", "custom" ]
The name of the relation to the resource instance. Example: self.
Nested Schema : properties
Type:
Show Source
object
-
changeIndicator: string
Change indicator or the ETag value of the resource instance.
Examples
This example describes how to create a serial number.
Example cURL Command
Use the following cURL command to submit a request on the REST resource. This example creates a serial number for inventory item 663959 in organization 207:
curl -u username:password -X POST -H "Content-Type:application/vnd.oracle.adf.resourceitem+json" -d 'request payload' "https://servername/fscmRestApi/resources/version/generateSerialNumbers?onlyData=true"
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 creates.
{ "OrganizationId" : 207, "InventoryItemId" : 663959, "NumberOfSerials" : 3 }
Example Response Body
The following example includes the contents of the response body in JSON format:
{ "OrganizationCode" : null, "OrganizationId" : "207", "ItemNumber" : null, "InventoryItemId" : 663959, "NumberOfSerials" : 3, "StartSerialNumber" : "SS0210", "EndSerialNumber" : "SS0212", "ReturnStatus" : "SUCCESS", "ReturnMessageName" : null, "ReturnMessageText" : null }