643 matches
14 actions
X
14 actions
- Create DM message by participant IDPOSTv1.0.0
- Create PostsPOSTv1.0.0
- Delete PostsDELETEv1.0.0
- Follow UserPOSTv1.0.0
- Get Posts by IDGETv1.0.0
- Get Users by UsernameGETv1.0.0
- Get Users FollowersGETv1.0.0
- Get Users MeGETv1.0.0
- Get Users MentionsGETv1.0.0
- Get Users PostsGETv1.0.0
- Like PostPOSTv1.0.0
- Repost PostPOSTv1.0.0
- Search Posts RecentGETv1.0.0
- Search UsersGETv1.0.0
Social/X
Follow User
v1.0.0Input
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier of a User"
},
"target_user_id": {
"type": "string"
}
},
"required": [
"id",
"target_user_id"
],
"additionalProperties": false
}Output
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
{
"type": "object",
"properties": {
"data": {
"type": "object",
"required": [
"following",
"pending_follow"
],
"properties": {
"following": {
"type": "boolean",
"description": "Whether the source User is following the target User."
},
"pending_follow": {
"type": "boolean",
"description": "Whether the follow request is pending the target User's approval."
}
}
},
"errors": {
"type": "array",
"items": {
"type": "object"
}
}
}
}