Run in Apidog
Captures manufacturer information for an article. The Manufacturer master captures central manufacturer code and store specific code that link back to the central entity
Request Body Params application/json
[
{
"central_code" : "string" ,
"store_id" : "string" ,
"manufacturer_id" : "string" ,
"manufacturer_name" : "string"
}
]
Request Code Samples
curl --location --request POST 'https://test.your-api-server.com/master/manufacturers/' \
--header 'X-SYNC-TOKEN;' \
--header 'Accept-Encoding;' \
--header 'Content-Type: application/json' \
--data-raw '[
{
"central_code": "string",
"store_id": "string",
"manufacturer_id": "string",
"manufacturer_name": "string"
}
]'
Responses
{
"status" : "string" ,
"message" : "string"
}
Modified at 2025-02-10 12:39:04