ℹ️ Information
# These method lists the Liker scale used for evaluating the results, the list is presented in full or by ID.
end point:
Name | Type | Description | Required |
---|---|---|---|
end point | url | url end point | ✅ |
YOUR_zelfium_APIKey_TOKEN | string | zelfium_APIKey | ✅ |
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)
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"
}
]
}
end point:
Name | Type | Description | Required |
---|---|---|---|
end point | url | url end point | ✅ |
ID | integer | ID Scale (1 to 7) | ✅ |
YOUR_zelfium_APIKey_TOKEN | string | zelfium_APIKey | ✅ |
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)
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"
}
]
}