Skip to main content

Create an Entry Relationship

POST 

https://euwest.api.elasticpath.com/v2/flows/:flowSlug/entries/:flowEntryID/relationships/:flowFieldSlug

  • In Commerce, create an entry relationship to one or more resources. If any relationships already exist, the ones made in the request are added to them.
  • In Product Experience Manager, create an entry relationship with the product to which you want to associate the template.

Request

Path Parameters

    flowSlug stringrequired

    The slug of the flow/template that the entry belongs to.

    flowFieldSlug stringrequired

    The slug of the field/attribute that the relationship belongs to.

    flowEntryID stringrequired

    The ID of the entry you are requesting.

Body

required
    data object[]

    The data to be stored.

  • Array [
  • id uuid

    A unique identifier for a resource.

    type string

    The resource type of the object.

  • ]

Responses

Created

Schema
    data object[]
  • Array [
  • id uuid

    A unique identifier for a resource.

    type string

    Represents the type of object being returned.

  • ]

Authorization: http

name: bearerAuthtype: httpscheme: bearer
curl -L -X POST 'https://euwest.api.elasticpath.com/v2/flows/:flowSlug/entries/:flowEntryID/relationships/:flowFieldSlug' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"data": [
{
"id": "00000000-0000-0000-0000-000000000000",
"type": "string"
}
]
}'
Request Collapse all
Base URL
https://euwest.api.elasticpath.com
Auth
Parameters
— pathrequired
— pathrequired
— pathrequired
Body required
{
  "data": [
    {
      "id": "00000000-0000-0000-0000-000000000000",
      "type": "string"
    }
  ]
}
ResponseClear

Click the Send API Request button above and see the response here!