Skip to content

Latest commit

 

History

History
2574 lines (1906 loc) · 86.3 KB

File metadata and controls

2574 lines (1906 loc) · 86.3 KB

Unifapi\Sdk\XApi

All URIs are relative to https://api.unifapi.com, except if the operation defines another base path.

Method HTTP request Description
xAutocompleteGet() GET /x/autocomplete Autocomplete X users, topics, hashtags, and cashtags
xCommunitiesIdAboutGet() GET /x/communities/{id}/about Get an X Community about timeline
xCommunitiesIdGet() GET /x/communities/{id} Get X Community by ID
xCommunitiesIdMediaGet() GET /x/communities/{id}/media Get media Posts from an X Community
xCommunitiesIdMemberSearchGet() GET /x/communities/{id}/member_search Search members in an X Community
xCommunitiesIdMembersGet() GET /x/communities/{id}/members Get members of an X Community
xCommunitiesIdModeratorsGet() GET /x/communities/{id}/moderators Get moderators of an X Community
xCommunitiesIdTweetsGet() GET /x/communities/{id}/tweets Get Posts from an X Community
xCommunitiesSearchGet() GET /x/communities/search Search X Communities
xFriendshipsShowGet() GET /x/friendships/show Check whether one X user follows another
xListsIdFollowersGet() GET /x/lists/{id}/followers Get followers/subscribers of an X List
xListsIdMembersGet() GET /x/lists/{id}/members Get members of an X List
xListsIdTweetsGet() GET /x/lists/{id}/tweets Get Posts from an X List
xListsSearchGet() GET /x/lists/search Search X Lists
xTrendsByWoeidWoeidGet() GET /x/trends/by/woeid/{woeid} Get X trends by WOEID
xTweetsGet() GET /x/tweets Get X Posts by IDs
xTweetsIdArticleGet() GET /x/tweets/{id}/article Get the article-style payload for an X Post
xTweetsIdGet() GET /x/tweets/{id} Get X Post by ID
xTweetsIdLikingUsersGet() GET /x/tweets/{id}/liking_users Get users who liked an X Post
xTweetsIdQuoteTweetsGet() GET /x/tweets/{id}/quote_tweets Get quote Posts for an X Post
xTweetsIdRetweetedByGet() GET /x/tweets/{id}/retweeted_by Get users who reposted an X Post
xTweetsIdTranslationGet() GET /x/tweets/{id}/translation Translate an X Post
xTweetsSearchRecentGet() GET /x/tweets/search/recent Search recent X Posts
xUsersByGet() GET /x/users/by Get X users by usernames
xUsersByUsernameUsernameGet() GET /x/users/by/username/{username} Get X user by username
xUsersGet() GET /x/users Get X users by IDs
xUsersIdFollowersGet() GET /x/users/{id}/followers Get an X user's followers
xUsersIdFollowersIdsGet() GET /x/users/{id}/followers/ids Get follower IDs for an X user
xUsersIdFollowingGet() GET /x/users/{id}/following Get users followed by an X user
xUsersIdFollowingIdsGet() GET /x/users/{id}/following/ids Get following IDs for an X user
xUsersIdGet() GET /x/users/{id} Get X user by ID
xUsersIdLikedTweetsGet() GET /x/users/{id}/liked_tweets Get Posts liked by an X user
xUsersIdProfileTranslationGet() GET /x/users/{id}/profile_translation Translate an X user profile
xUsersIdTweetsGet() GET /x/users/{id}/tweets Get Posts authored by an X user
xUsersIdVerifiedFollowersGet() GET /x/users/{id}/verified_followers Get verified followers for an X user

xAutocompleteGet()

xAutocompleteGet($query): \Unifapi\\Sdk\Model\XAutocompleteGet200Response

Autocomplete X users, topics, hashtags, and cashtags

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$query = 'query_example'; // string

try {
    $result = $apiInstance->xAutocompleteGet($query);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xAutocompleteGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
query string

Return type

\Unifapi\Sdk\Model\XAutocompleteGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xCommunitiesIdAboutGet()

xCommunitiesIdAboutGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results): \Unifapi\\Sdk\Model\XCommunitiesIdAboutGet200Response

Get an X Community about timeline

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$id = 'id_example'; // string | X resource id.
$expansions = 'expansions_example'; // string
$tweet_fields = 'tweet_fields_example'; // string
$user_fields = 'user_fields_example'; // string
$media_fields = 'media_fields_example'; // string
$place_fields = 'place_fields_example'; // string
$poll_fields = 'poll_fields_example'; // string
$pagination_token = 'pagination_token_example'; // string
$next_token = 'next_token_example'; // string
$max_results = 56; // int

try {
    $result = $apiInstance->xCommunitiesIdAboutGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xCommunitiesIdAboutGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
id string X resource id.
expansions string [optional]
tweet_fields string [optional]
user_fields string [optional]
media_fields string [optional]
place_fields string [optional]
poll_fields string [optional]
pagination_token string [optional]
next_token string [optional]
max_results int [optional]

Return type

\Unifapi\Sdk\Model\XCommunitiesIdAboutGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xCommunitiesIdGet()

xCommunitiesIdGet($id, $community_fields): \Unifapi\\Sdk\Model\XCommunitiesIdGet200Response

Get X Community by ID

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$id = 'id_example'; // string | X resource id.
$community_fields = 'community_fields_example'; // string

try {
    $result = $apiInstance->xCommunitiesIdGet($id, $community_fields);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xCommunitiesIdGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
id string X resource id.
community_fields string [optional]

Return type

\Unifapi\Sdk\Model\XCommunitiesIdGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xCommunitiesIdMediaGet()

xCommunitiesIdMediaGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results): \Unifapi\\Sdk\Model\XCommunitiesIdAboutGet200Response

Get media Posts from an X Community

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$id = 'id_example'; // string | X resource id.
$expansions = 'expansions_example'; // string
$tweet_fields = 'tweet_fields_example'; // string
$user_fields = 'user_fields_example'; // string
$media_fields = 'media_fields_example'; // string
$place_fields = 'place_fields_example'; // string
$poll_fields = 'poll_fields_example'; // string
$pagination_token = 'pagination_token_example'; // string
$next_token = 'next_token_example'; // string
$max_results = 56; // int

try {
    $result = $apiInstance->xCommunitiesIdMediaGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xCommunitiesIdMediaGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
id string X resource id.
expansions string [optional]
tweet_fields string [optional]
user_fields string [optional]
media_fields string [optional]
place_fields string [optional]
poll_fields string [optional]
pagination_token string [optional]
next_token string [optional]
max_results int [optional]

Return type

\Unifapi\Sdk\Model\XCommunitiesIdAboutGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xCommunitiesIdMemberSearchGet()

xCommunitiesIdMemberSearchGet($id, $query, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results): \Unifapi\\Sdk\Model\XCommunitiesIdMemberSearchGet200Response

Search members in an X Community

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$id = 'id_example'; // string | X resource id.
$query = 'query_example'; // string
$expansions = 'expansions_example'; // string
$tweet_fields = 'tweet_fields_example'; // string
$user_fields = 'user_fields_example'; // string
$media_fields = 'media_fields_example'; // string
$place_fields = 'place_fields_example'; // string
$poll_fields = 'poll_fields_example'; // string
$pagination_token = 'pagination_token_example'; // string
$next_token = 'next_token_example'; // string
$max_results = 56; // int

try {
    $result = $apiInstance->xCommunitiesIdMemberSearchGet($id, $query, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xCommunitiesIdMemberSearchGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
id string X resource id.
query string
expansions string [optional]
tweet_fields string [optional]
user_fields string [optional]
media_fields string [optional]
place_fields string [optional]
poll_fields string [optional]
pagination_token string [optional]
next_token string [optional]
max_results int [optional]

Return type

\Unifapi\Sdk\Model\XCommunitiesIdMemberSearchGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xCommunitiesIdMembersGet()

xCommunitiesIdMembersGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results): \Unifapi\\Sdk\Model\XCommunitiesIdMemberSearchGet200Response

Get members of an X Community

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$id = 'id_example'; // string | X resource id.
$expansions = 'expansions_example'; // string
$tweet_fields = 'tweet_fields_example'; // string
$user_fields = 'user_fields_example'; // string
$media_fields = 'media_fields_example'; // string
$place_fields = 'place_fields_example'; // string
$poll_fields = 'poll_fields_example'; // string
$pagination_token = 'pagination_token_example'; // string
$next_token = 'next_token_example'; // string
$max_results = 56; // int

try {
    $result = $apiInstance->xCommunitiesIdMembersGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xCommunitiesIdMembersGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
id string X resource id.
expansions string [optional]
tweet_fields string [optional]
user_fields string [optional]
media_fields string [optional]
place_fields string [optional]
poll_fields string [optional]
pagination_token string [optional]
next_token string [optional]
max_results int [optional]

Return type

\Unifapi\Sdk\Model\XCommunitiesIdMemberSearchGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xCommunitiesIdModeratorsGet()

xCommunitiesIdModeratorsGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results): \Unifapi\\Sdk\Model\XCommunitiesIdMemberSearchGet200Response

Get moderators of an X Community

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$id = 'id_example'; // string | X resource id.
$expansions = 'expansions_example'; // string
$tweet_fields = 'tweet_fields_example'; // string
$user_fields = 'user_fields_example'; // string
$media_fields = 'media_fields_example'; // string
$place_fields = 'place_fields_example'; // string
$poll_fields = 'poll_fields_example'; // string
$pagination_token = 'pagination_token_example'; // string
$next_token = 'next_token_example'; // string
$max_results = 56; // int

try {
    $result = $apiInstance->xCommunitiesIdModeratorsGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xCommunitiesIdModeratorsGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
id string X resource id.
expansions string [optional]
tweet_fields string [optional]
user_fields string [optional]
media_fields string [optional]
place_fields string [optional]
poll_fields string [optional]
pagination_token string [optional]
next_token string [optional]
max_results int [optional]

Return type

\Unifapi\Sdk\Model\XCommunitiesIdMemberSearchGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xCommunitiesIdTweetsGet()

xCommunitiesIdTweetsGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results): \Unifapi\\Sdk\Model\XCommunitiesIdAboutGet200Response

Get Posts from an X Community

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$id = 'id_example'; // string | X resource id.
$expansions = 'expansions_example'; // string
$tweet_fields = 'tweet_fields_example'; // string
$user_fields = 'user_fields_example'; // string
$media_fields = 'media_fields_example'; // string
$place_fields = 'place_fields_example'; // string
$poll_fields = 'poll_fields_example'; // string
$pagination_token = 'pagination_token_example'; // string
$next_token = 'next_token_example'; // string
$max_results = 56; // int

try {
    $result = $apiInstance->xCommunitiesIdTweetsGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xCommunitiesIdTweetsGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
id string X resource id.
expansions string [optional]
tweet_fields string [optional]
user_fields string [optional]
media_fields string [optional]
place_fields string [optional]
poll_fields string [optional]
pagination_token string [optional]
next_token string [optional]
max_results int [optional]

Return type

\Unifapi\Sdk\Model\XCommunitiesIdAboutGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xCommunitiesSearchGet()

xCommunitiesSearchGet($query, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results, $community_fields): \Unifapi\\Sdk\Model\XCommunitiesSearchGet200Response

Search X Communities

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$query = 'query_example'; // string
$expansions = 'expansions_example'; // string
$tweet_fields = 'tweet_fields_example'; // string
$user_fields = 'user_fields_example'; // string
$media_fields = 'media_fields_example'; // string
$place_fields = 'place_fields_example'; // string
$poll_fields = 'poll_fields_example'; // string
$pagination_token = 'pagination_token_example'; // string
$next_token = 'next_token_example'; // string
$max_results = 56; // int
$community_fields = 'community_fields_example'; // string

try {
    $result = $apiInstance->xCommunitiesSearchGet($query, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results, $community_fields);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xCommunitiesSearchGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
query string
expansions string [optional]
tweet_fields string [optional]
user_fields string [optional]
media_fields string [optional]
place_fields string [optional]
poll_fields string [optional]
pagination_token string [optional]
next_token string [optional]
max_results int [optional]
community_fields string [optional]

Return type

\Unifapi\Sdk\Model\XCommunitiesSearchGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xFriendshipsShowGet()

xFriendshipsShowGet($source_id, $target_id, $source_screen_name, $target_screen_name): \Unifapi\\Sdk\Model\XFriendshipsShowGet200Response

Check whether one X user follows another

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$source_id = 'source_id_example'; // string
$target_id = 'target_id_example'; // string
$source_screen_name = 'source_screen_name_example'; // string
$target_screen_name = 'target_screen_name_example'; // string

try {
    $result = $apiInstance->xFriendshipsShowGet($source_id, $target_id, $source_screen_name, $target_screen_name);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xFriendshipsShowGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
source_id string [optional]
target_id string [optional]
source_screen_name string [optional]
target_screen_name string [optional]

Return type

\Unifapi\Sdk\Model\XFriendshipsShowGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xListsIdFollowersGet()

xListsIdFollowersGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results): \Unifapi\\Sdk\Model\XCommunitiesIdMemberSearchGet200Response

Get followers/subscribers of an X List

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$id = 'id_example'; // string | X resource id.
$expansions = 'expansions_example'; // string
$tweet_fields = 'tweet_fields_example'; // string
$user_fields = 'user_fields_example'; // string
$media_fields = 'media_fields_example'; // string
$place_fields = 'place_fields_example'; // string
$poll_fields = 'poll_fields_example'; // string
$pagination_token = 'pagination_token_example'; // string
$next_token = 'next_token_example'; // string
$max_results = 56; // int

try {
    $result = $apiInstance->xListsIdFollowersGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xListsIdFollowersGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
id string X resource id.
expansions string [optional]
tweet_fields string [optional]
user_fields string [optional]
media_fields string [optional]
place_fields string [optional]
poll_fields string [optional]
pagination_token string [optional]
next_token string [optional]
max_results int [optional]

Return type

\Unifapi\Sdk\Model\XCommunitiesIdMemberSearchGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xListsIdMembersGet()

xListsIdMembersGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results): \Unifapi\\Sdk\Model\XCommunitiesIdMemberSearchGet200Response

Get members of an X List

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$id = 'id_example'; // string | X resource id.
$expansions = 'expansions_example'; // string
$tweet_fields = 'tweet_fields_example'; // string
$user_fields = 'user_fields_example'; // string
$media_fields = 'media_fields_example'; // string
$place_fields = 'place_fields_example'; // string
$poll_fields = 'poll_fields_example'; // string
$pagination_token = 'pagination_token_example'; // string
$next_token = 'next_token_example'; // string
$max_results = 56; // int

try {
    $result = $apiInstance->xListsIdMembersGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xListsIdMembersGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
id string X resource id.
expansions string [optional]
tweet_fields string [optional]
user_fields string [optional]
media_fields string [optional]
place_fields string [optional]
poll_fields string [optional]
pagination_token string [optional]
next_token string [optional]
max_results int [optional]

Return type

\Unifapi\Sdk\Model\XCommunitiesIdMemberSearchGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xListsIdTweetsGet()

xListsIdTweetsGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results): \Unifapi\\Sdk\Model\XCommunitiesIdAboutGet200Response

Get Posts from an X List

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$id = 'id_example'; // string | X resource id.
$expansions = 'expansions_example'; // string
$tweet_fields = 'tweet_fields_example'; // string
$user_fields = 'user_fields_example'; // string
$media_fields = 'media_fields_example'; // string
$place_fields = 'place_fields_example'; // string
$poll_fields = 'poll_fields_example'; // string
$pagination_token = 'pagination_token_example'; // string
$next_token = 'next_token_example'; // string
$max_results = 56; // int

try {
    $result = $apiInstance->xListsIdTweetsGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xListsIdTweetsGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
id string X resource id.
expansions string [optional]
tweet_fields string [optional]
user_fields string [optional]
media_fields string [optional]
place_fields string [optional]
poll_fields string [optional]
pagination_token string [optional]
next_token string [optional]
max_results int [optional]

Return type

\Unifapi\Sdk\Model\XCommunitiesIdAboutGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xListsSearchGet()

xListsSearchGet($query, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results): \Unifapi\\Sdk\Model\XListsSearchGet200Response

Search X Lists

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$query = 'query_example'; // string
$expansions = 'expansions_example'; // string
$tweet_fields = 'tweet_fields_example'; // string
$user_fields = 'user_fields_example'; // string
$media_fields = 'media_fields_example'; // string
$place_fields = 'place_fields_example'; // string
$poll_fields = 'poll_fields_example'; // string
$pagination_token = 'pagination_token_example'; // string
$next_token = 'next_token_example'; // string
$max_results = 56; // int

try {
    $result = $apiInstance->xListsSearchGet($query, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xListsSearchGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
query string
expansions string [optional]
tweet_fields string [optional]
user_fields string [optional]
media_fields string [optional]
place_fields string [optional]
poll_fields string [optional]
pagination_token string [optional]
next_token string [optional]
max_results int [optional]

Return type

\Unifapi\Sdk\Model\XListsSearchGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xTrendsByWoeidWoeidGet()

xTrendsByWoeidWoeidGet($woeid, $max_trends, $trend_fields): \Unifapi\\Sdk\Model\XTrendsByWoeidWoeidGet200Response

Get X trends by WOEID

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$woeid = 'woeid_example'; // string
$max_trends = 56; // int
$trend_fields = 'trend_fields_example'; // string

try {
    $result = $apiInstance->xTrendsByWoeidWoeidGet($woeid, $max_trends, $trend_fields);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xTrendsByWoeidWoeidGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
woeid string
max_trends int [optional]
trend_fields string [optional]

Return type

\Unifapi\Sdk\Model\XTrendsByWoeidWoeidGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xTweetsGet()

xTweetsGet($ids, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields): \Unifapi\\Sdk\Model\XTweetsGet200Response

Get X Posts by IDs

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$ids = 'ids_example'; // string | Comma-separated resource ids.
$expansions = 'expansions_example'; // string
$tweet_fields = 'tweet_fields_example'; // string
$user_fields = 'user_fields_example'; // string
$media_fields = 'media_fields_example'; // string
$place_fields = 'place_fields_example'; // string
$poll_fields = 'poll_fields_example'; // string

try {
    $result = $apiInstance->xTweetsGet($ids, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xTweetsGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
ids string Comma-separated resource ids.
expansions string [optional]
tweet_fields string [optional]
user_fields string [optional]
media_fields string [optional]
place_fields string [optional]
poll_fields string [optional]

Return type

\Unifapi\Sdk\Model\XTweetsGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xTweetsIdArticleGet()

xTweetsIdArticleGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields): \Unifapi\\Sdk\Model\XTweetsIdArticleGet200Response

Get the article-style payload for an X Post

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$id = 'id_example'; // string | X resource id.
$expansions = 'expansions_example'; // string
$tweet_fields = 'tweet_fields_example'; // string
$user_fields = 'user_fields_example'; // string
$media_fields = 'media_fields_example'; // string
$place_fields = 'place_fields_example'; // string
$poll_fields = 'poll_fields_example'; // string

try {
    $result = $apiInstance->xTweetsIdArticleGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xTweetsIdArticleGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
id string X resource id.
expansions string [optional]
tweet_fields string [optional]
user_fields string [optional]
media_fields string [optional]
place_fields string [optional]
poll_fields string [optional]

Return type

\Unifapi\Sdk\Model\XTweetsIdArticleGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xTweetsIdGet()

xTweetsIdGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields): \Unifapi\\Sdk\Model\XTweetsIdGet200Response

Get X Post by ID

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$id = 'id_example'; // string | X resource id.
$expansions = 'expansions_example'; // string
$tweet_fields = 'tweet_fields_example'; // string
$user_fields = 'user_fields_example'; // string
$media_fields = 'media_fields_example'; // string
$place_fields = 'place_fields_example'; // string
$poll_fields = 'poll_fields_example'; // string

try {
    $result = $apiInstance->xTweetsIdGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xTweetsIdGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
id string X resource id.
expansions string [optional]
tweet_fields string [optional]
user_fields string [optional]
media_fields string [optional]
place_fields string [optional]
poll_fields string [optional]

Return type

\Unifapi\Sdk\Model\XTweetsIdGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xTweetsIdLikingUsersGet()

xTweetsIdLikingUsersGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results): \Unifapi\\Sdk\Model\XCommunitiesIdMemberSearchGet200Response

Get users who liked an X Post

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$id = 'id_example'; // string | X resource id.
$expansions = 'expansions_example'; // string
$tweet_fields = 'tweet_fields_example'; // string
$user_fields = 'user_fields_example'; // string
$media_fields = 'media_fields_example'; // string
$place_fields = 'place_fields_example'; // string
$poll_fields = 'poll_fields_example'; // string
$pagination_token = 'pagination_token_example'; // string
$next_token = 'next_token_example'; // string
$max_results = 56; // int

try {
    $result = $apiInstance->xTweetsIdLikingUsersGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xTweetsIdLikingUsersGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
id string X resource id.
expansions string [optional]
tweet_fields string [optional]
user_fields string [optional]
media_fields string [optional]
place_fields string [optional]
poll_fields string [optional]
pagination_token string [optional]
next_token string [optional]
max_results int [optional]

Return type

\Unifapi\Sdk\Model\XCommunitiesIdMemberSearchGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xTweetsIdQuoteTweetsGet()

xTweetsIdQuoteTweetsGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results): \Unifapi\\Sdk\Model\XCommunitiesIdAboutGet200Response

Get quote Posts for an X Post

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$id = 'id_example'; // string | X resource id.
$expansions = 'expansions_example'; // string
$tweet_fields = 'tweet_fields_example'; // string
$user_fields = 'user_fields_example'; // string
$media_fields = 'media_fields_example'; // string
$place_fields = 'place_fields_example'; // string
$poll_fields = 'poll_fields_example'; // string
$pagination_token = 'pagination_token_example'; // string
$next_token = 'next_token_example'; // string
$max_results = 56; // int

try {
    $result = $apiInstance->xTweetsIdQuoteTweetsGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xTweetsIdQuoteTweetsGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
id string X resource id.
expansions string [optional]
tweet_fields string [optional]
user_fields string [optional]
media_fields string [optional]
place_fields string [optional]
poll_fields string [optional]
pagination_token string [optional]
next_token string [optional]
max_results int [optional]

Return type

\Unifapi\Sdk\Model\XCommunitiesIdAboutGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xTweetsIdRetweetedByGet()

xTweetsIdRetweetedByGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results): \Unifapi\\Sdk\Model\XCommunitiesIdMemberSearchGet200Response

Get users who reposted an X Post

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$id = 'id_example'; // string | X resource id.
$expansions = 'expansions_example'; // string
$tweet_fields = 'tweet_fields_example'; // string
$user_fields = 'user_fields_example'; // string
$media_fields = 'media_fields_example'; // string
$place_fields = 'place_fields_example'; // string
$poll_fields = 'poll_fields_example'; // string
$pagination_token = 'pagination_token_example'; // string
$next_token = 'next_token_example'; // string
$max_results = 56; // int

try {
    $result = $apiInstance->xTweetsIdRetweetedByGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xTweetsIdRetweetedByGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
id string X resource id.
expansions string [optional]
tweet_fields string [optional]
user_fields string [optional]
media_fields string [optional]
place_fields string [optional]
poll_fields string [optional]
pagination_token string [optional]
next_token string [optional]
max_results int [optional]

Return type

\Unifapi\Sdk\Model\XCommunitiesIdMemberSearchGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xTweetsIdTranslationGet()

xTweetsIdTranslationGet($id, $language): \Unifapi\\Sdk\Model\XTweetsIdTranslationGet200Response

Translate an X Post

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$id = 'id_example'; // string | X resource id.
$language = 'language_example'; // string

try {
    $result = $apiInstance->xTweetsIdTranslationGet($id, $language);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xTweetsIdTranslationGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
id string X resource id.
language string

Return type

\Unifapi\Sdk\Model\XTweetsIdTranslationGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xTweetsSearchRecentGet()

xTweetsSearchRecentGet($query, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results): \Unifapi\\Sdk\Model\XCommunitiesIdAboutGet200Response

Search recent X Posts

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$query = 'query_example'; // string | Recent search query.
$expansions = 'expansions_example'; // string
$tweet_fields = 'tweet_fields_example'; // string
$user_fields = 'user_fields_example'; // string
$media_fields = 'media_fields_example'; // string
$place_fields = 'place_fields_example'; // string
$poll_fields = 'poll_fields_example'; // string
$pagination_token = 'pagination_token_example'; // string
$next_token = 'next_token_example'; // string
$max_results = 56; // int

try {
    $result = $apiInstance->xTweetsSearchRecentGet($query, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xTweetsSearchRecentGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
query string Recent search query.
expansions string [optional]
tweet_fields string [optional]
user_fields string [optional]
media_fields string [optional]
place_fields string [optional]
poll_fields string [optional]
pagination_token string [optional]
next_token string [optional]
max_results int [optional]

Return type

\Unifapi\Sdk\Model\XCommunitiesIdAboutGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xUsersByGet()

xUsersByGet($usernames, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields): \Unifapi\\Sdk\Model\XUsersByGet200Response

Get X users by usernames

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$usernames = 'usernames_example'; // string | Comma-separated usernames.
$expansions = 'expansions_example'; // string
$tweet_fields = 'tweet_fields_example'; // string
$user_fields = 'user_fields_example'; // string
$media_fields = 'media_fields_example'; // string
$place_fields = 'place_fields_example'; // string
$poll_fields = 'poll_fields_example'; // string

try {
    $result = $apiInstance->xUsersByGet($usernames, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xUsersByGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
usernames string Comma-separated usernames.
expansions string [optional]
tweet_fields string [optional]
user_fields string [optional]
media_fields string [optional]
place_fields string [optional]
poll_fields string [optional]

Return type

\Unifapi\Sdk\Model\XUsersByGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xUsersByUsernameUsernameGet()

xUsersByUsernameUsernameGet($username, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields): \Unifapi\\Sdk\Model\XUsersIdGet200Response

Get X user by username

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$username = 'username_example'; // string | X handle without the leading `@`.
$expansions = 'expansions_example'; // string
$tweet_fields = 'tweet_fields_example'; // string
$user_fields = 'user_fields_example'; // string
$media_fields = 'media_fields_example'; // string
$place_fields = 'place_fields_example'; // string
$poll_fields = 'poll_fields_example'; // string

try {
    $result = $apiInstance->xUsersByUsernameUsernameGet($username, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xUsersByUsernameUsernameGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
username string X handle without the leading `@`.
expansions string [optional]
tweet_fields string [optional]
user_fields string [optional]
media_fields string [optional]
place_fields string [optional]
poll_fields string [optional]

Return type

\Unifapi\Sdk\Model\XUsersIdGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xUsersGet()

xUsersGet($ids, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields): \Unifapi\\Sdk\Model\XUsersByGet200Response

Get X users by IDs

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$ids = 'ids_example'; // string | Comma-separated resource ids.
$expansions = 'expansions_example'; // string
$tweet_fields = 'tweet_fields_example'; // string
$user_fields = 'user_fields_example'; // string
$media_fields = 'media_fields_example'; // string
$place_fields = 'place_fields_example'; // string
$poll_fields = 'poll_fields_example'; // string

try {
    $result = $apiInstance->xUsersGet($ids, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xUsersGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
ids string Comma-separated resource ids.
expansions string [optional]
tweet_fields string [optional]
user_fields string [optional]
media_fields string [optional]
place_fields string [optional]
poll_fields string [optional]

Return type

\Unifapi\Sdk\Model\XUsersByGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xUsersIdFollowersGet()

xUsersIdFollowersGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results): \Unifapi\\Sdk\Model\XCommunitiesIdMemberSearchGet200Response

Get an X user's followers

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$id = 'id_example'; // string | X resource id.
$expansions = 'expansions_example'; // string
$tweet_fields = 'tweet_fields_example'; // string
$user_fields = 'user_fields_example'; // string
$media_fields = 'media_fields_example'; // string
$place_fields = 'place_fields_example'; // string
$poll_fields = 'poll_fields_example'; // string
$pagination_token = 'pagination_token_example'; // string
$next_token = 'next_token_example'; // string
$max_results = 56; // int

try {
    $result = $apiInstance->xUsersIdFollowersGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xUsersIdFollowersGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
id string X resource id.
expansions string [optional]
tweet_fields string [optional]
user_fields string [optional]
media_fields string [optional]
place_fields string [optional]
poll_fields string [optional]
pagination_token string [optional]
next_token string [optional]
max_results int [optional]

Return type

\Unifapi\Sdk\Model\XCommunitiesIdMemberSearchGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xUsersIdFollowersIdsGet()

xUsersIdFollowersIdsGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results): \Unifapi\\Sdk\Model\XUsersIdFollowersIdsGet200Response

Get follower IDs for an X user

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$id = 'id_example'; // string | X resource id.
$expansions = 'expansions_example'; // string
$tweet_fields = 'tweet_fields_example'; // string
$user_fields = 'user_fields_example'; // string
$media_fields = 'media_fields_example'; // string
$place_fields = 'place_fields_example'; // string
$poll_fields = 'poll_fields_example'; // string
$pagination_token = 'pagination_token_example'; // string
$next_token = 'next_token_example'; // string
$max_results = 56; // int

try {
    $result = $apiInstance->xUsersIdFollowersIdsGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xUsersIdFollowersIdsGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
id string X resource id.
expansions string [optional]
tweet_fields string [optional]
user_fields string [optional]
media_fields string [optional]
place_fields string [optional]
poll_fields string [optional]
pagination_token string [optional]
next_token string [optional]
max_results int [optional]

Return type

\Unifapi\Sdk\Model\XUsersIdFollowersIdsGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xUsersIdFollowingGet()

xUsersIdFollowingGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results): \Unifapi\\Sdk\Model\XCommunitiesIdMemberSearchGet200Response

Get users followed by an X user

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$id = 'id_example'; // string | X resource id.
$expansions = 'expansions_example'; // string
$tweet_fields = 'tweet_fields_example'; // string
$user_fields = 'user_fields_example'; // string
$media_fields = 'media_fields_example'; // string
$place_fields = 'place_fields_example'; // string
$poll_fields = 'poll_fields_example'; // string
$pagination_token = 'pagination_token_example'; // string
$next_token = 'next_token_example'; // string
$max_results = 56; // int

try {
    $result = $apiInstance->xUsersIdFollowingGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xUsersIdFollowingGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
id string X resource id.
expansions string [optional]
tweet_fields string [optional]
user_fields string [optional]
media_fields string [optional]
place_fields string [optional]
poll_fields string [optional]
pagination_token string [optional]
next_token string [optional]
max_results int [optional]

Return type

\Unifapi\Sdk\Model\XCommunitiesIdMemberSearchGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xUsersIdFollowingIdsGet()

xUsersIdFollowingIdsGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results): \Unifapi\\Sdk\Model\XUsersIdFollowersIdsGet200Response

Get following IDs for an X user

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$id = 'id_example'; // string | X resource id.
$expansions = 'expansions_example'; // string
$tweet_fields = 'tweet_fields_example'; // string
$user_fields = 'user_fields_example'; // string
$media_fields = 'media_fields_example'; // string
$place_fields = 'place_fields_example'; // string
$poll_fields = 'poll_fields_example'; // string
$pagination_token = 'pagination_token_example'; // string
$next_token = 'next_token_example'; // string
$max_results = 56; // int

try {
    $result = $apiInstance->xUsersIdFollowingIdsGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xUsersIdFollowingIdsGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
id string X resource id.
expansions string [optional]
tweet_fields string [optional]
user_fields string [optional]
media_fields string [optional]
place_fields string [optional]
poll_fields string [optional]
pagination_token string [optional]
next_token string [optional]
max_results int [optional]

Return type

\Unifapi\Sdk\Model\XUsersIdFollowersIdsGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xUsersIdGet()

xUsersIdGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields): \Unifapi\\Sdk\Model\XUsersIdGet200Response

Get X user by ID

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$id = 'id_example'; // string | X resource id.
$expansions = 'expansions_example'; // string
$tweet_fields = 'tweet_fields_example'; // string
$user_fields = 'user_fields_example'; // string
$media_fields = 'media_fields_example'; // string
$place_fields = 'place_fields_example'; // string
$poll_fields = 'poll_fields_example'; // string

try {
    $result = $apiInstance->xUsersIdGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xUsersIdGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
id string X resource id.
expansions string [optional]
tweet_fields string [optional]
user_fields string [optional]
media_fields string [optional]
place_fields string [optional]
poll_fields string [optional]

Return type

\Unifapi\Sdk\Model\XUsersIdGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xUsersIdLikedTweetsGet()

xUsersIdLikedTweetsGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results): \Unifapi\\Sdk\Model\XCommunitiesIdAboutGet200Response

Get Posts liked by an X user

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$id = 'id_example'; // string | X resource id.
$expansions = 'expansions_example'; // string
$tweet_fields = 'tweet_fields_example'; // string
$user_fields = 'user_fields_example'; // string
$media_fields = 'media_fields_example'; // string
$place_fields = 'place_fields_example'; // string
$poll_fields = 'poll_fields_example'; // string
$pagination_token = 'pagination_token_example'; // string
$next_token = 'next_token_example'; // string
$max_results = 56; // int

try {
    $result = $apiInstance->xUsersIdLikedTweetsGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xUsersIdLikedTweetsGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
id string X resource id.
expansions string [optional]
tweet_fields string [optional]
user_fields string [optional]
media_fields string [optional]
place_fields string [optional]
poll_fields string [optional]
pagination_token string [optional]
next_token string [optional]
max_results int [optional]

Return type

\Unifapi\Sdk\Model\XCommunitiesIdAboutGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xUsersIdProfileTranslationGet()

xUsersIdProfileTranslationGet($id, $language): \Unifapi\\Sdk\Model\XTweetsIdTranslationGet200Response

Translate an X user profile

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$id = 'id_example'; // string | X resource id.
$language = 'language_example'; // string

try {
    $result = $apiInstance->xUsersIdProfileTranslationGet($id, $language);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xUsersIdProfileTranslationGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
id string X resource id.
language string

Return type

\Unifapi\Sdk\Model\XTweetsIdTranslationGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xUsersIdTweetsGet()

xUsersIdTweetsGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results, $exclude): \Unifapi\\Sdk\Model\XCommunitiesIdAboutGet200Response

Get Posts authored by an X user

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$id = 'id_example'; // string | X resource id.
$expansions = 'expansions_example'; // string
$tweet_fields = 'tweet_fields_example'; // string
$user_fields = 'user_fields_example'; // string
$media_fields = 'media_fields_example'; // string
$place_fields = 'place_fields_example'; // string
$poll_fields = 'poll_fields_example'; // string
$pagination_token = 'pagination_token_example'; // string
$next_token = 'next_token_example'; // string
$max_results = 56; // int
$exclude = 'exclude_example'; // string | Comma-separated X timeline exclusions, e.g. `replies`.

try {
    $result = $apiInstance->xUsersIdTweetsGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results, $exclude);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xUsersIdTweetsGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
id string X resource id.
expansions string [optional]
tweet_fields string [optional]
user_fields string [optional]
media_fields string [optional]
place_fields string [optional]
poll_fields string [optional]
pagination_token string [optional]
next_token string [optional]
max_results int [optional]
exclude string Comma-separated X timeline exclusions, e.g. `replies`. [optional]

Return type

\Unifapi\Sdk\Model\XCommunitiesIdAboutGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

xUsersIdVerifiedFollowersGet()

xUsersIdVerifiedFollowersGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results): \Unifapi\\Sdk\Model\XCommunitiesIdMemberSearchGet200Response

Get verified followers for an X user

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure Bearer authorization: bearerAuth
$config = Unifapi\\Sdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Unifapi\\Sdk\Api\XApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$id = 'id_example'; // string | X resource id.
$expansions = 'expansions_example'; // string
$tweet_fields = 'tweet_fields_example'; // string
$user_fields = 'user_fields_example'; // string
$media_fields = 'media_fields_example'; // string
$place_fields = 'place_fields_example'; // string
$poll_fields = 'poll_fields_example'; // string
$pagination_token = 'pagination_token_example'; // string
$next_token = 'next_token_example'; // string
$max_results = 56; // int

try {
    $result = $apiInstance->xUsersIdVerifiedFollowersGet($id, $expansions, $tweet_fields, $user_fields, $media_fields, $place_fields, $poll_fields, $pagination_token, $next_token, $max_results);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling XApi->xUsersIdVerifiedFollowersGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
id string X resource id.
expansions string [optional]
tweet_fields string [optional]
user_fields string [optional]
media_fields string [optional]
place_fields string [optional]
poll_fields string [optional]
pagination_token string [optional]
next_token string [optional]
max_results int [optional]

Return type

\Unifapi\Sdk\Model\XCommunitiesIdMemberSearchGet200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]