Edit Blocked Item
Body
-
data string | null
-
note string | null
-
type integer(int32)
" Ip = 0 Email = 1 Country = 2 "
Values are
0
,1
, or2
. -
customerForShopId integer(int64) | null
PUT /self/{shopId}/blacklist/{blockedItemId}
curl \
-X PUT https://dev.sellpass.io/self/{shopId}/blacklist/{blockedItemId} \
-H "Authorization: $API_KEY" \
-H "Content-Type: application/json" \
-d '{"data":"string","note":"string","type":0,"customerForShopId":42}'
Request example
{
"data": "string",
"note": "string",
"type": 0,
"customerForShopId": 42
}
Request examples
{
"data": "string",
"note": "string",
"type": 0,
"customerForShopId": 42
}