List api keys
Get /settings/apikeys
Parameters:
None
Response:
Node of API keys:
Name | Description | Type |
---|---|---|
id | API key Id | String |
hash | Login | String |
key | Password | String |
iPFilterEnabled | If ip filter is enabled | Boolean |
allowedIPs | Array of IP | Array |
description | Description | String |
createdAt | Datetime on timestamp format | Int |
updatedAt | Datetime on timestamp format | Int |
enabled | If the API key is enabled or not | String |
Programming language:
Response exemple:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | [ { "id" : "5f6ze54f6ze54f6ze5f4ze74" , "hash" : "fe6z45f6ze5f4ez6f4ze6f54zef9c5d8" , "key" : "3fzefze987f9ze8f7ze65f4ze654fzeb0" , "iPFilterEnabled" : true , "allowedIPs" : [192.168.1.1], "description" : "Application" , "updatedAt" : 1438768285, "enabled" : true }, { "id" : "5f6ze54f6ze54f6ze5f4ze74" , "hash" : "fe6z45f6ze5f4ez6f4ze6f54zef9c5d8" , "key" : "3fzefze987f9ze8f7ze65f4ze654fzeb0" , "iPFilterEnabled" : false , "description" : "Blog" , "createdAt" : 1428652130, "updatedAt" : 1428652130, "enabled" : false } ] |