DELETE /2024-09/supplier-items/identifiers/{supplier_item_identifier}

Delete a specific identifier from a supplier item

Path parameters

  • supplier_item_identifier string(uuid) Required

    The UUID of the supplier item identifier

Responses

  • 204

    Successfully deleted

  • 401 application/json

    The request requires user authentication or the user is not authorized to access this resource.

    Hide response attribute Show response attribute object
    • message string
  • 403 application/json

    Forbidden - The user does not have permission to access this resource.

    Hide response attribute Show response attribute object
    • message string Required
  • 404 application/json

    The specified resource was not found

    Hide response attribute Show response attribute object
    • message string
DELETE /2024-09/supplier-items/identifiers/{supplier_item_identifier}
curl \
 --request DELETE 'https://app.merchanthq.com/api/2024-09/supplier-items/identifiers/{supplier_item_identifier}' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (401)
{
  "message": "Unauthorized"
}
Response examples (403)
{
  "message": "This action is unauthorized."
}
Response examples (404)
{
  "message": "Not found"
}