Disconnect a Social Wallet
This page documents API endpoints to disconnect a social wallet and an artist wallet on the In Process protocol.
Endpoint
DELETE https://inprocess.fun/api/artists/wallets
Request Body
Send a JSON object with the following fields:
{
"social_wallet": "0x643D962630E35B49340C23079fBac7D8546d8D01"
}
Example Request
cURL
curl -X DELETE https://inprocess.fun/api/artists/wallets \
-H "Content-Type: application/json" \
-d '{
"social_wallet": "0x643D962630E35B49340C23079fBac7D8546d8D01"
}'
Example Response
{
"success": true
}