Skip to main content

Create a product file relationship

POST 

https://euwest.api.elasticpath.com/pcm/products/:productID/relationships/files

Create a product file relationship

Request

Path Parameters

    productID stringrequired

    A unique identifier for the product.

Body

    data object[]
  • Array [
  • id string

    A unique identifier for a file generated when a file is created.

    type string

    Possible values: [file]

    This represents the type of resource being returned. Always file.

    meta object
    tags string[]

    The files associated with a product.

  • ]

Responses

No Content

Authorization: http

name: bearerAuthtype: httpscheme: bearer
curl -L -X POST 'https://euwest.api.elasticpath.com/pcm/products/:productID/relationships/files' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"data": [
{
"id": "string",
"type": "file",
"meta": {
"tags": [
"string"
]
}
}
]
}'
Request Collapse all
Base URL
https://euwest.api.elasticpath.com
Auth
Parameters
— pathrequired
Body
{
  "data": [
    {
      "id": "string",
      "type": "file",
      "meta": {
        "tags": [
          "string"
        ]
      }
    }
  ]
}
ResponseClear

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