chat.bsky.convo.leaveConvo
POST/xrpc/chat.bsky.convo.leaveConvo
This endpoint is part of the Bluesky Chat (DMs) APIs. Requests usually require authentication, are directed to the user's PDS intance, and proxied to the single central chat service by setting the appropriate service DID (did:web:api.bsky.chat
) in the service proxying header.
To learn more about calling atproto API endpoints like this one, see the API Hosts and Auth guide.
Request
- application/json
Body
required
convoId stringrequired
Responses
- 200
- 400
- 401
OK
- application/json
- Schema
- Example (from schema)
Schema
convoId stringrequired
rev stringrequired
{
"convoId": "string",
"rev": "string"
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
error stringrequired
Possible values: [InvalidRequest
, ExpiredToken
, InvalidToken
]
message stringrequired
{
"error": "InvalidRequest",
"message": "string"
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
error required
message stringrequired
{
"message": "string"
}
Loading...