Team v1

GET /team

Returns the list of featured company members.

Request

app.js
import axios from 'axios'

const result = await axios.get('https://api.sliko.io/v1/team',
  {
    headers: {
      apiKey: <YOUR_API_KEY>
    },
  }); 
curl -i -H "apiKey: <YOUR_API_KEY>" -H "Accept: application/json" -H "Content-Type: application/json" https://api.sliko.io/v1/team

Optional query params

You are able to paginate your requests (for better performance) using offset and limit.

Query param offset

Specifies the number of items the API should skip/offset, useful for pagination.

Query param limit

Specifies the amount/limit of team members returned.

Default values are: offset 0 and limit 5

https://api.sliko.io/v1/team?offset=0&limit=10

Response

[
  {
    "id": "string",
    "user": {
      "id": "string",
      "email": "string",
      "is_verified": true,
      "first_name": "string",
      "last_name": "string",
      "name": "string",
      "picture_url": "string",
    },
    "job_title": "string",
    "access_type": "string",
    "work_email": "string",
    "bio": "string"
  }
]

The user object refers to the user's personal information (such as name and the personal email).

200:

[
  {
    "id": "a9b6a430-daa2-4dd5-9787-1e83daabd86f",
    "user": {
      "id": "3c8a5c8e-c4f8-4633-83d7-d9c4847f143d",
      "email": "jley@gmail.com",
      "is_verified": true,
      "first_name": "Joaquim",
      "last_name": "Ley",
      "name": "Joaquim Ley",
      "picture_url": "https://lh3.googleusercontent.com/a-/AOh14GiUPAtW5XmEGvP5y_eOkcJcxYEBhs5FsxkUYWAmhA=s96-c"
    },
    "job_title": "Developer, Designer",
    "access_type": "admin",
    "work_email": "joaquim@sliko.io",
    "bio": null
  },
  {
    "id": "b2f23c1c-97ce-4c6b-bde7-31848faef814",
    "user": {
      "id": "4cfd4414-3299-43d5-b0f7-62163d78b348",
      "email": "miguelmendes13@gmail.com",
      "is_verified": true,
      "first_name": "Miguel",
      "last_name": "Mendes",
      "name": "Miguel Mendes",
      "picture_url": "https://lh3.googleusercontent.com/a/AATXAJxnpBImhCCQ0xCQM3Q1VHGIumFfM5JAAPsdEwwd=s96-c"
    },
    "job_title": "Developer",
    "access_type": "editor",
    "work_email": "miguel@sliko.io",
    "bio": null
  }
]
Edit this page on GitHub Updated at Mon, Dec 13, 2021