MerchantCustomAttributes
BulkDeleteMerchantCustomAttributes
Deletes custom attributes for a merchant as a bulk operation. To delete a custom attribute owned by another application, the visibility setting must be VISIBILITY_READ_WRITE_VALUES.
post/v2/merchants/custom-attributes/bulk-delete
Request body
Example request
{
"values": {
"id1": {
"key": "alternative_seller_name",
"merchant_id": "DM7VKY8Q63GNP"
},
"id2": {
"key": "has_seen_tutorial",
"merchant_id": "DM7VKY8Q63GNP"
}
}
}Response
Success
Example response
{
"values": {
"id1": {
"errors": [],
"merchant_id": "DM7VKY8Q63GNP"
},
"id2": {
"errors": [],
"merchant_id": "DM7VKY8Q63GNP"
}
}
}