Skip to content

Search is only available in production builds. Try building and previewing the site to test it out locally.

Delete AutoSKU

POST {api-url}/deleteAutoSKU?ns={community}

Use this call to permanently delete an existing AutoSKU enrollment, completely disassociating the merchant from the daily SKU evaluation.

FieldTypeRequirementDescription
UsernameStringRequiredA unique username identifying the merchant to remove.
IDNumberStringOptionalThe ID number of the user.
MetadataStringOptionalAny other detail that you wish to store with this event.
{
"Username": "celbuxMerchant",
"IDNumber": "",
"Metadata": "{\"Reason\": \"Merchant offboarded\"}"
}
Terminal window
curl -X POST '{api-url}/deleteAutoSKU?ns={community}' \
-H 'Authorization: bearer YOUR_TOKEN' \
-H 'Content-Type: application/json' \
-d '{"Username":"celbuxMerchant","IDNumber":"","Metadata":"{\"Reason\": \"Merchant offboarded\"}"}'