Check if the current user follows the specified user and get follow relationship details.
Path Parameters
ID of the user to check follow status with
Response
Whether the current user follows the specified user
ID of the follow relationship if it exists, null otherwise
Timestamp when the follow relationship was created, null if not following
Error Responses
Invalid User ID - 400 Bad Request
{
"error": "Invalid userId",
"code": "follow/invalid-user-id"
}
Unauthorized - 401 Unauthorized
{
"error": "Authentication required",
"code": "auth/unauthorized"
}
Server Error - 500 Internal Server Error
{
"error": "Internal server error",
"code": "follow/server-error"
}