PUT — Update User Status
Update the status of one or more contacts in your BotPenguin inbox. Currently supports marking contacts as DELETED.
Last updated
Was this helpful?
Was this helpful?
{
"ids": ["640f472d173951357f08edee"],
"status": "DELETED"
}curl 'https://api.v7.botpenguin.com/inbox/users/status-update' \
-X PUT \
-H 'Authorization: Bearer [MASKED_TOKEN]' \
-H 'authtype: Key' \
-H 'Content-Type: application/json' \
--data-raw '{
"ids": ["640f472d173951357f08edee"],
"status": "DELETED"
}'{
"success": true,
"message": "",
"code": 200
}{
"success": false,
"error": {
"code": "UNAUTHORIZED",
"message": "Bearer token is invalid or has expired.",
"statusCode": 401
}
}