Create an Entry Relationship
POSThttps://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.
- application/json
Body
required
data object[]
Responses
- 201
- 404
- 422
- 500
Created
- application/json
- Schema
- Example (from schema)
- default
Schema
data object[]
{
"data": [
{
"id": "00000000-0000-0000-0000-000000000000",
"type": "brand"
}
]
}
{
"data": [
{
"type": "brand",
"id": "0d28e5b6-f615-4e1c-b038-275cfde97927"
}
]
}
Bad request. Not Found.
- application/json
- Schema
- Example (from schema)
- internal-server-error
Schema
errors Error[]required
{
"errors": [
{
"status": 500,
"title": "Internal server error",
"detail": "An internal error has occurred.",
"request_id": "00000000-0000-0000-0000-000000000000",
"meta": {
"missing_ids": [
"e7d50bd5-1833-43c0-9848-f9d325b08be8"
]
}
}
]
}
{
"errors": [
{
"title": "Not Found",
"status": 404
}
]
}
Bad request. The request failed validation.
- application/json
- Schema
- Example (from schema)
- missing-name
Schema
errors Error[]required
{
"errors": [
{
"status": 500,
"title": "Internal server error",
"detail": "An internal error has occurred.",
"request_id": "00000000-0000-0000-0000-000000000000",
"meta": {
"missing_ids": [
"e7d50bd5-1833-43c0-9848-f9d325b08be8"
]
}
}
]
}
{
"errors": [
{
"title": "Validation Error",
"status": 400,
"detail": "data.attributes.name: \"name\" is required"
}
]
}
Internal server error. There was a system failure in the platform.
- application/json
- Schema
- Example (from schema)
- internal-server-error
Schema
errors Error[]required
{
"errors": [
{
"status": 500,
"title": "Internal server error",
"detail": "An internal error has occurred.",
"request_id": "00000000-0000-0000-0000-000000000000",
"meta": {
"missing_ids": [
"e7d50bd5-1833-43c0-9848-f9d325b08be8"
]
}
}
]
}
{
"errors": [
{
"status": 500,
"title": "Internal Server Error",
"detail": "There was an internal server error, you can report with your request id.",
"request_id": "635da56d-75a1-43cd-b696-7ab119756b3a"
}
]
}
Authorization: http
name: bearerAuthtype: httpscheme: bearer
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
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"
}
]
}'
ResponseClear