Social MediaMicrobloggingReal-Time DataStreamingAdvertisingContent
Properties
Name
Type
Description
target_user_id
string
Unique identifier of this User. This is returned as a string in order to avoid complications with languages and tools that cannot handle large integers.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/twitter/refs/heads/main/json-schema/x-api-users-following-create-request-schema.json",
"title": "UsersFollowingCreateRequest",
"description": "UsersFollowingCreateRequest schema from X API v2",
"type": "object",
"properties": {
"target_user_id": {
"type": "string",
"description": "Unique identifier of this User. This is returned as a string in order to avoid complications with languages and tools that cannot handle large integers.",
"pattern": "^[0-9]{1,19}$",
"example": "2244994945"
}
},
"required": [
"target_user_id"
]
}