Languages
English
ジャポネ
0-getting-started
0.1- Getting Started
1-Methods
1.1- Liker Scale
1.1.1 - Get List All
1.1.2 - Get List By Id
1.3- Questions
1.3.1- Get List Random
1.3.2- Get By Id
1.2- Results
1.2.1- Get List
1.2.2- Get By Id
1.2.3- Get Intro By Id
1.2.4- Get In Depth By Id
1.2.5- Get Braind By Id
1.2.6- Get Components By Id
1.2.7- Get Super Power By Id
1.4- Test
1.3.1- Post Save Answer
2-errors
2.1- Errors Code
home
Homepage

ℹ️ Information

# These method lists the Liker scale used for evaluating the results, the list is presented in full or by ID.


# 1.1.1 - GET List all

end point:

https://api.zelfium.com/test/en/liker_scale/


# Parameters


Name Type Description Required
end point url url end point ✅
YOUR_zelfium_APIKey_TOKEN string zelfium_APIKey ✅

# Example Request in python

import requests

url = "https://api.zelfium.com/test/en/liker_scale/"

payload = {}
headers = {
  'Authorization': 'Bearer {YOUR_zelfium_APIKey_TOKEN}'
}

response = requests.request("GET", url, headers=headers, data=payload)

print(response.text)

# Example Response

Liker Scale


# Parameters


Name Type Description Required
id integer ID scale (1 to 7) ➖
name string scale name ➖
value string scale value ➖
ord integer scale order ➖
color string scale color ➖

{
    "data": [
        {
            "id": 1,
            "name": "Totally Agree",
            "values": 6,
            "ord": 7,
            "color": "#DE0303"
        },
        {
            "id": 2,
            "name": "Mostly so, I agree",
            "values": 5,
            "ord": 6,
            "color": "#FF2315"
        },
        {
            "id": 3,
            "name": "More yes than no",
            "values": 4,
            "ord": 5,
            "color": "#FF6D2F"
        },
        {
            "id": 4,
            "name": "I neither Agree or Disagree",
            "values": 0,
            "ord": 4,
            "color": "#2FFF9B"
        },
        {
            "id": 5,
            "name": "More no than yes",
            "values": 3,
            "ord": 3,
            "color": "#4DBFFF"
        },
        {
            "id": 6,
            "name": "Mostly not, I disagree",
            "values": 2,
            "ord": 2,
            "color": "#2F82FF"
        },
        {
            "id": 7,
            "name": "Totally Disagree",
            "values": 1,
            "ord": 1,
            "color": "#2E54B2"
        }
    ]
}

# 1.1.2 - GET List by id

end point:

https://api.zelfium.com/test/en/liker_scale/{ID}


# Parameters


Name Type Description Required
end point url url end point ✅
ID integer ID Scale (1 to 7) ✅
YOUR_zelfium_APIKey_TOKEN string zelfium_APIKey ✅

# Example Request in python

import requests

url = "https://api.zelfium.com/test/en/liker_scale/{ID}"

payload = {}
headers = {
  'Authorization': 'Bearer {YOUR_zelfium_APIKey_TOKEN}'
}

response = requests.request("GET", url, headers=headers, data=payload)

print(response.text)

# Example Response

Liker Scale


# Parameters


Name Type Description Required
id integer ID scale (1 to 7) ➖
name string scale name ➖
value integer scale value ➖
ord integer scale order ➖
color string scale color ➖

{
    "data": [
        {
            "id": 1,
            "name": "Totally Agree",
            "values": 6,
            "ord": 7,
            "color": "#DE0303"
        }
    ]
}