GET
/
oauth
/
users
curl --request GET \
  --url https://api.feedspace.io/v3/oauth/users \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": 7243,
    "unique_user_id": "zhBU6t",
    "name": "User",
    "email": "developer@feedspace.io",
    "user_meta": {
      "user_type": "0",
      "allowed_workspace": "1",
      "video_time_limit": "180",
      "allowed_video_playback": "4",
      "text_feed_notification": "1",
      "video_feed_notification": "1",
      "video_feed_submission_notification": "1",
      "summary_email_notification": "1",
      "allowed_wall_of_love_promotion": "1",
      "allowed_ff_per_workspace": "2",
      "allowed_vff_per_workspace": "2",
      "allowed_tff_per_workspace": "10",
      "save_profile_account_attempts": "0",
      "logout_of_all_sessions_attempts": "0",
      "save_notifications_attempts": "0",
      "allowed_aff_per_workspace": "2",
      "audio_feed_notification": "1",
      "audio_feed_submission_notification": "1",
      "allowed_audio_playback": "4",
      "storage_used": "0",
      "hide_fs_branding": "0",
      "use_feedspace_redirect_page": "0",
      "import_social_feeds": "1",
      "import_video_inside_app": "1",
      "delete_allowed": "1",
      "wol_feeds_selection_limit": "5",
      "upload_video_outside_app": "1",
      "upload_audio_outside_app": "1",
      "import_csv_text_feeds": "1",
      "allow_custom_domain": "0",
      "allow_free_trial": "1",
      "multiple_languages_allowed": "0",
      "import_contacts": "0",
      "allowed_storage": "1000000000",
      "allow_tff_rating_type_option": "1",
      "allow_upload_file_option_video": "1",
      "allow_upload_file_option_audio": "1",
      "allow_api_access_token": "1",
      "allow_webhook_setup": "1",
      "allow_link_in_feed_form": "0",
      "allow_trial_days": "7",
      "is_app_register": "1",
      "profile_pic_url": null
    },
    "workspaces": 1
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

User details fetched successfully.

The response is of type object.

GET
/
oauth
/
users
curl --request GET \
  --url https://api.feedspace.io/v3/oauth/users \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": 7243,
    "unique_user_id": "zhBU6t",
    "name": "User",
    "email": "developer@feedspace.io",
    "user_meta": {
      "user_type": "0",
      "allowed_workspace": "1",
      "video_time_limit": "180",
      "allowed_video_playback": "4",
      "text_feed_notification": "1",
      "video_feed_notification": "1",
      "video_feed_submission_notification": "1",
      "summary_email_notification": "1",
      "allowed_wall_of_love_promotion": "1",
      "allowed_ff_per_workspace": "2",
      "allowed_vff_per_workspace": "2",
      "allowed_tff_per_workspace": "10",
      "save_profile_account_attempts": "0",
      "logout_of_all_sessions_attempts": "0",
      "save_notifications_attempts": "0",
      "allowed_aff_per_workspace": "2",
      "audio_feed_notification": "1",
      "audio_feed_submission_notification": "1",
      "allowed_audio_playback": "4",
      "storage_used": "0",
      "hide_fs_branding": "0",
      "use_feedspace_redirect_page": "0",
      "import_social_feeds": "1",
      "import_video_inside_app": "1",
      "delete_allowed": "1",
      "wol_feeds_selection_limit": "5",
      "upload_video_outside_app": "1",
      "upload_audio_outside_app": "1",
      "import_csv_text_feeds": "1",
      "allow_custom_domain": "0",
      "allow_free_trial": "1",
      "multiple_languages_allowed": "0",
      "import_contacts": "0",
      "allowed_storage": "1000000000",
      "allow_tff_rating_type_option": "1",
      "allow_upload_file_option_video": "1",
      "allow_upload_file_option_audio": "1",
      "allow_api_access_token": "1",
      "allow_webhook_setup": "1",
      "allow_link_in_feed_form": "0",
      "allow_trial_days": "7",
      "is_app_register": "1",
      "profile_pic_url": null
    },
    "workspaces": 1
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

User details fetched successfully.

The response is of type object.