post https://{accountName}.{environment}.com.br/api/catalog/pvt/skuattachment
Associates an existing SKU to an existing Attachment
Request body has the following properties:
Attribute | Type | Description |
---|---|---|
AttachmentId | integer | Attachment ID |
SkuId | integer | Unique identifier of an SKU |
Request body example:
{
"AttachmentId": 1,
"SkuId": 1622
}
Response body has the following properties:
Attribute | Type | Description |
---|---|---|
Id | integer | SKU Attachment ID: Identifier of SKU association to Attachment |
AttachmentId | integer | Attachment ID |
SkuId | integer | Unique identifier of an SKU |
Response body example:
{
"Id": 31,
"AttachmentId": 1,
"SkuId": 7
}