Social Account

get

This method returns details about a specific social account, including its ID, provider (e.g., 'facebook'), UID, last login date, date joined, and any additional data. It also includes the associated user ID.

Authorizations
Query parameters
date_joinedstring · date-timeOptional

Query parameter date_joined used to filter results based on specific conditions.

extra_datastringOptional

Query parameter extra_data used to filter results based on specific conditions.

idintegerOptional

Query parameter id used to filter results based on specific conditions.

id__gtintegerOptional

Filters records where id is greater than the given value.

id__gteintegerOptional

Filters records where id is greater than or equal to the given value.

id__ltintegerOptional

Filters records where id is less than the given value.

id__lteintegerOptional

Filters records where id is less than or equal to the given value.

last_loginstring · date-timeOptional

Query parameter last_login used to filter results based on specific conditions.

limitintegerOptional

Limits the number of results returned in the response.

pageintegerOptional

Query parameter page used to filter results based on specific conditions.

providerstringOptional

Query parameter provider used to filter results based on specific conditions.

sortstringOptional

Query parameter sort used to filter results based on specific conditions.

uidstringOptional

Query parameter uid used to filter results based on specific conditions.

userintegerOptional

Query parameter user used to filter results based on specific conditions.

Responses
200
Successful response for status code 200.
application/json
get
GET /api/v1/remote/1/data-warehouse/social-account/accounts/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
200

Successful response for status code 200.

{
  "count": 123,
  "next": "http://api.example.org/accounts/?page=4",
  "previous": "http://api.example.org/accounts/?page=2",
  "results": [
    {
      "date_joined": "2025-06-27T09:42:04.179Z",
      "extra_data": "text",
      "id": 1,
      "last_login": "2025-06-27T09:42:04.179Z",
      "provider": "facebook",
      "uid": "text",
      "user": 1
    }
  ]
}
get

This method returns details about a specific social account, including its ID, provider (e.g., 'facebook'), UID, last login date, date joined, and any additional data. It also includes the associated user ID. This endpoint retrieves a specific record by its unique identifier.

Authorizations
Path parameters
idintegerRequired

A unique integer value identifying this social account.

Responses
200
Successful response for status code 200.
application/json
get
GET /api/v1/remote/1/data-warehouse/social-account/accounts/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
  "date_joined": "2025-06-27T09:42:04.179Z",
  "extra_data": "text",
  "id": 1,
  "last_login": "2025-06-27T09:42:04.179Z",
  "provider": "facebook",
  "uid": "text",
  "user": 1
}

Was this helpful?