Create one relationship

post

/fscmRestApi/resources/11.13.18.05/qualityActions/{ActionId}/child/Relationships

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.
  • Contains one of the following values: true or false. If true, the server performs an Upsert operation instead of a Create operation. During an Upsert operation, the server attempts to find an existing resource that matches the payload. If a match is found, the server updates the existing resource instead of creating a new one. If not found or false (default), the server performs a Create operation. Note that the Upsert operation isn't supported for date-effective REST resources.
Supported Media Types
Request Body - application/json ()
Root Schema : schema
Type: object
Show Source
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 : qualityActions-Relationships-item-response
Type: object
Show Source
Back to Top

Examples

This example describes how to create a relationship.

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.resourceitem+json" -d 'request payload' 
"https://servername/fscmRestApi/resources/version/qualityActions/ActionId/child/Relationships"

For example, the following command creates a relationship:

curl -u username:password -X POST -H "Content-Type:application/vnd.oracle.adf.resourceitem+json" -d 'request payload' 
"https://servername/fscmRestApi/resources/version/qualityActions/300100111060019/child/Relationships"

Example Request Body

To create a relationship between a resource object and a quality issue or action, you need the provide the DestObjType attribute and the related internal identifier for the resource object:

Destination Object Type REST Resource Internal Identifier URL to Get Internal Identifier

ITEM

itemsV2

ItemId

fscmRestApi/resources/latest/itemsV2?q=ItemNumber=item number

CHANGE

productChangeOrders

ChangeId

fscmRestApi/resources/latest/productChangeOrders?q=ChangeNotice=change number

IDEA

ideas

IdeaId

fscmRestApi/resources/latest/ideas?q=Name=idea name

REQUIREMENT

requirementSpecifications

RequirementId

fscmRestApi/resources/latest/requirementSpecifications?q=Name=name

REQUIREMENT_LINE_ITEM

requirementSpecifications > RequirementVersion > RequirementLineItem

RequirementLineItemId

fscmRestApi/resources/latest/requirementSpecifications/id/child/RequirementVersion/id/child/RequirementLineItem?q=Name=name

CONCEPT

Not currently supported

Not available

Use the ConceptId attribute from the Product Concept web service. For more information, see the SOAP Web Services for Oracle SCM guide.

COMPONENT

Not currently supported

Not available

Use the ConceptStructureId attribute from the Product Concept web service. For more information, see the SOAP Web Services for Oracle SCM guide.

PROPOSAL

productProposals

ProductProposalId

fscmRestApi/resources/latest/productProposals?q=Name=name

ORA_ISSUE

qualityIssues

IssueId

fscmRestApi/resources/latest/qualityIssues?q=IssueNumber=name

ORA_ACTION

qualityActions

ActionId

fscmRestApi/resources/latest/qualityActions?q=Name=name

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.

{
	"DestObjType" : "CHANGE",  
	"DestObjId" : 300100238393092
}

Example Response Body

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

{
	"RelationshipId" : 300100238394770,
	"RelationshipType" : null,
	"CreatedBy" : "PLM_AUTO",
	"CreationDate" : "2020-03-05T12:26:01+00:00",
	"LastUpdateDate" : "2020-03-05T12:26:03.750+00:00",
	"LastUpdatedBy" : "PLM_AUTO",
	"DestObjType" : "CHANGE",
	"DestObjId" : 300100238393092,
	"SrcObjType" : "ORA_ACTION",
	"SrcObjId" : 300100171077730,
	"Name" : "ECO23456",
	"Description" : "Design changes based on failure analysis findings",
	"Status" : "Draft",
	"LatestFlag" : "true",
	"LatestFlagName" : "Yes",
	"RelationshipTypeName" : null,
	"DestObjTypeName" : "Changes",
	...
}
Back to Top