Create one relationship
/fscmRestApi/resources/11.13.18.05/customerAssets/{AssetId}/child/AssetStructure
Request
-
AssetId(required): integer(int64)
Value that uniquely identifies the asset. The application creates this value from the asset number when it creates the asset. This attribute is read-only.
-
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.
- application/json
object
-
AssetId: integer
(int64)
Value that uniquely identifies the child asset in the structure. To add or remove a child asset of the asset that you are updating, you must provide the value that identifies the asset, the asset number, or the value that identifies the item and serial number.
Response
- application/json
Default Response
-
Metadata-Context(required):
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(required):
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
-
AssetId: integer
(int64)
Value that uniquely identifies the child asset in the structure. To add or remove a child asset of the asset that you are updating, you must provide the value that identifies the asset, the asset number, or the value that identifies the item and serial number.
-
AssetNumber: string
Title:
Number
Read Only:true
Maximum Length:80
Number that uniquely identifies the asset. To add or remove a child asset of the asset that you are updating, you must provide the value that identifies the asset, the asset number, or the value that identifies the item and serial number. -
ItemNumber: string
Read Only:
true
Maximum Length:300
Number that uniquely identifies the item that the child asset references. To add or remove a child asset of the asset that you are updating, you must provide the value that identifies the asset, the asset number, or the value that identifies the item and serial number. -
links: array
Links
Title:
Links
The link relations associated with the resource instance. -
RelationshipId: integer
(int64)
Read Only:
true
Value that uniquely identifies the asset relationship. The application creates this value when it creates the asset relationship. This attribute is read-only. -
SerialNumber: string
Title:
Serial Number
Read Only:true
Maximum Length:80
Serial number of the asset. To add or remove a child asset of the asset that you are updating, you must provide the value that identifies the asset, the asset number, or the value that identifies the item and serial number.
array
Links
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.
object
-
changeIndicator: string
Change indicator or the ETag value of the resource instance.
Examples
This example describes how to create one relationship in one customer asset.
Example cURL Command
Use the following cURL command to submit a request on the REST resource:
curl -u username:password -X POST -H "Content-Type:application/vnd.oracle.adf.action+json" -d 'request payload' "https://servername/fscmRestApi/resources/version/customerAssets/AssetId/child/AssetStructure"
For example, the following command creates relationship 300100111139686 between child asset 300100111139572 and parent asset 300100111139547:
curl -u username:password -X POST -H "Content-Type:application/vnd.oracle.adf.action+json" -d 'request payload' "https://servername/fscmRestApi/resources/version/customerAssets/300100111139547/child/AssetStructure"
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.
{ "AssetId": 300100111139572 }
Example Response Body
The following example includes the contents of the response body in JSON format:
{ "RelationshipId": 300100111139686, "AssetId": 300100111139572, "AssetNumber": "JR-Test-30440", "SerialNumber": null, "ItemNumber": "alm-lot-001" }