Documentation Index Fetch the complete documentation index at: https://docs.replyke.com/llms.txt
Use this file to discover all available pages before exploring further.
Sends a connection request from the authenticated user to the specified user. An optional message can be included. A notification is sent to the receiving user.
Path Parameters
The Replyke user ID (UUID) of the user to send a connection request to.
Body Parameters
Optional message to include with the connection request.
Response
On success, returns HTTP 201 with the created connection record:
Unique connection record ID (UUID).
Always "pending" for a new request.
ISO timestamp of when the request was sent.
Error Responses
{
"error" : "A user cannot send a connection request to themselves." ,
"code" : "connection/self-request"
}
{
"error" : "One or both users involved in the connection do not exist." ,
"code" : "connection/user-not-found"
}
{
"error" : "A connection request is already pending between these users." ,
"code" : "connection/request-pending"
}
{
"error" : "Users are already connected." ,
"code" : "connection/already-connected"
}
Request Previously Declined — 409
{
"error" : "Connection request was declined. Only the receiver can initiate a new request." ,
"code" : "connection/request-declined"
}
See Also