GET: ALL SKILLS
Type:
GET
Method:
skills
Parameter:
(integer)
{start} / {limit}
URL Example:
https://www.bizstim.com/api/skills/0/20
start
parameter refers to the first record to return. Default = 0.limit
parameter refers to the number of records to return. Default = 20. Maximum = 100.start
and limit
can be omitted from the URL and their defaults will be chosen.total
key in the json object is the total number of records found. Use this to create your own pagination.ELEMENT | TYPE | DESCRIPTION |
---|---|---|
id |
integer | Unique id. |
name |
string | Name of the skill |
{ "status": "success", "total": 10, "response": [ { "id": "12", "name": "Calculus" }, { ... } ] }