Chats
Delete Chat
Permanently deletes a chat conversation. Cannot be undone. Requires permission api_chats_delete.
https://public-api.fansmetric.comDELETE/v1/{account_id}/chats/{user_id}
Bearer
Authorization
defaultAuthorizationBearer <token>Send your FansMetric API key as a Bearer token in the Authorization header.
In: header
Path Parameters
account_id*integerOnlyFans numeric account ID.
user_id*integerThe fan/user ID of the conversation to delete.
curl --request DELETE "https://public-api.fansmetric.com/v1/acct_XXXXX/chats/sample_user_id" \
--header "Authorization: Bearer YOUR_API_KEY"Response
200{
"data":{
"success":true
}
"_meta":{
"_credits":{
"used":1
}
"_rate_limits":{
"limit_minute":1000
"remaining_minute":996
"limit_day":50000
"remaining_day":49996
}
}
}