Create one relationship

post

/fscmRestApi/resources/11.13.18.05/customerAssets/{AssetId}/child/AssetStructure

Request

Path Parameters
  • 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.
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
  • 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.
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 : customerAssets-AssetStructure-item-response
Type: object
Show Source
  • 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.
  • 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.
  • 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
  • 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.
  • 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.
Back to Top

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"
}
Back to Top