Quick and dirty API Documentation, needs more heavy documentation but this will give basic routes.
Right now there isn't much in terms of documentation. We are working toward getting there.
Understand the API system is very new, but as much as I could "simply" implemented.
What I mean with this:
- Data body or return is done with JSON.
- All objects in the core have some ability to managed with the API system with the only exception, so far, being Users.
There are a few important bits in regards to interacting and using the API System.
- API Can be globally enabled/disabled.
- API Can be user enabled/disabled. -- (You can define which users you want to have access to the api system.)
Tokens:
- API Global token is a header required with the name
fog-api-token
- API User token is a header that can be used (Highly recommended) being passed as a header in the form
fog-user-token
- You can not manually create the tokens via the presented text fields. This is what the purpose of the "Reset Token" Buttons are. There's a Reset Token for the global API as well as one for each user.
- Tokens are cryptographically generated so no two tokens will be known regardless of how many FOG Server's you decide to install. There is no "default" token essentially. This holds true for both User and Main API Tokens.
Authentication:
You can use HTTP Basic Authorization (with curl -u <user>:<password>
or header with name Authorization: Basic <base64encoded username:password>
Although I have allowed the ability for this type of authentication, and it will work, I would still recommend using user token system as it cannot be received and decoded to a valid username/password pair to manage your fog server.
Routes and Methods:
GET
/fog/system/info
Returns 200 if accessible/fog/system/status
Alias for #1/fog/<objectactivetasktype>/current
Returns listing of "active" items. Active referring task types, (Snapin Task, Snapin Job, Task, Scheduled, Multicast)/fog/<objectactivetasktype>/active
Alias for #3/fog/<object>/search/<whatareyousearchingfor>
Idea is similar to the Search Page from GUI./fog/<object>
Same idea as "List all"/fog/<object>/list
Alias to #6 (1.4.1)/fog/<object>/all
Alias to #6 (1.4.1)/fog/<object>/<IDOFOBJECT>
Same as if clicking edit on an item (only just to get its information)./fog/search/<stringtosearch>
Will return all matching results of all items, hosts, images, etc... (Essentially a universal search.) (1.5.0)/fog/unisearch/<stringtosearch>
Alias for #10 (1.5.0)
PUT (Requires a json body)
/fog/<object>/<IDOFOBJECT>/edit
Update the object./fog/<object>/<IDOFOBJECT>/update
Alias for #1/fog/<object>/<IDOFOBJECT>
Alias for #1
POST (Requires a json body)
/fog/<objecttasktype>/<IDOFOBJECT>/task
Task object./fog/<object>/create
Create new object./fog/<object>/new
Alias of #2./fog/<object>
Alias of #2. (1.4.1)
DELETE
/fog/<objectactivetasktype>/cancel
Cancel specific items (requires json body)/fog/<objecttasktype>/<IDOFOBJECT>/cancel
Cancel specific task for object./fog/<object>/<IDOFOBJECT>/delete
Delete/Remove object./fog/<object>/<IDOFOBJECT>/remove
Alias of #3/fog/<object>/<IDOFOBJECT>
Alias of #3 (1.4.1)
HEAD
/fog/system/info
Returns 200 if accessible/fog/system/status
Alias for #1
I realize this is not a full on "here's everything" but it's something that should be able to help get you along the path.
Core objects
clientupdater
dircleaner
greenfog
group
groupassociation
history
hookevent
host
hostautologout
hostscreensetting
image
imageassociation
imagepartitiontype
imagetype
imaginglog
inventory
ipxe
keysequence
macaddressassociation
module
moduleassociation
multicastsession
multicastsessionsassociation
nodefailure
notifyevent
os
oui
plugin
powermanagement
printer
printerassociation
pxemenuoptions
scheduledtask
service
snapins
snapinassociation
snapingroupassociation
snapinjob
snapintask
storagegroup
storagenode
task
tasklog
taskstate
tasktype
usercleanup
usertracking
virus
Core task objects
group
host
multicastsession
snapinjob
snapintask
task
Core active task objects
multicastsession
scheduledtask
snapinjob
snapintask
task
Routes that allow filtering with JSON body passed
GET
/fog/<object>
/fog/<objectactivetasktype>/active
/fog/<objectactivetasktype>/current
DELETE
/fog/<objectactivetasktype>/cancel
Plugin's Compatibility.
I have worked relatively hard to implement capability for plugins to also tie in with this. This means hooks can be used to implement API level functionality with plugins or custom elements you'd like to use.
Hook Event Names what core element it ties in with:
API_VALID_CLASSES
, variable to adjust is labeled 'validClasses'. Ties in with<object>
items.API_TASKING_CLASSES
, variable to adjust is labeled 'validTaskingClasses'. Ties in withitems. API_ACTIVE_TASK_CLASSES
, variable to adjust is labeled 'validActiveTasks'. Ties in withitems. API_MASSDATA_MAPPING
, variables to adjust are labeled 'data', 'classname', and 'classman'. Operates on the "list" and "search" type routes.API_INDIVDATA_MAPPING
, variables to adjust are labeled 'data', 'classname', and 'class'. Operates on individual objects such as/fog/<object>/<IDOFOBJECT>
API_GETTER
, variables to adjust are labeled 'data', 'classname', and 'class'. Operations for all items and is used to present the return of data in a common way regardless of what object is being called.
- In regards to #6 of the Hook Event elements, think of it as this:
If I request information about a task, one of the elements of a task is the "host" object. The data presented in the "Task" return for a specific host will look the same in the task return as it would if you looked the host up individually. For example, if the task is using a hostID of 7, the 'host' item in this element would look identical to the return data if you were go to route/fog/host/7
List all active tasks:
header('fog-api-token: <FOG Configuration Page->FOG Settings->API Settings->FOG_API_TOKEN>');
header('fog-user-token: <User management page->relevant user->API Settings->User API Token>');
http://fogserverip/fog/task/active
So let's do this command line style:
Let's just say your api token is abcde
Let's just say your user token is fghij
List all current/active tasks is a GET request.
URL for now is just fogserver
curl -H 'fog-api-token: abcde' -H 'fog-user-token: fghij' -X GET http://fogserver/fog/task/current -o listalltasks.json
This will list all current/active tasks to a file in the current working directory named listalltasks.json
For creating a snapin task, this depends how you plan to do it. To be honest, while the option is available, it's not something I've worked overly hard to get working "natively". It was originally only designed to allow host and group, though I saw the appeal and added capabilities.
So let's just say you have a snapin associated to a host.
The snapin ID is: 6
The host ID is: 1
This would be a POST request as per the earlier information.
The URL you would call would be:
http://fogserver/fog/host/1/task
The post requires some information, and luckily I kind of documented the "maximum" and "minimum" information for creating a tasking in this way.
The "data to send" would be, at minimum:
{
"taskTypeID": <IDOFTASKTYPETOUSE>
}
For a "snapin" task, this is ID's 12 or 13. important to remember which is a single snapin, vs. all snapin though.
The "full" information you could send for tasking in a manner as above is:
{
"taskTypeID": <IDOFTASKTYPE>,
"taskName": "NameToGiveTasking",
"shutdown": <bool>true/false,
"debug": <bool>true/false,
"deploySnapins": <bool>/<IDOFSNAPIN or -1 for all>,
"passreset": "what to change password if passreset task",
"sessionjoin": "<SessionNameToJoin>",
"wol": <bool>
}
In your case, with a specific known host and snapin to send you could do:
curl -H 'fog-api-token: abcde' -H 'fog-user-token: fghij' -H 'Content-Type: application/json' -X POST -d '{"taskTypeID":13,"deploySnapins":6}' http://fogserver/fog/host/1/task
This should create the tasking for you as you described. (Task Type ID 13 = Single Snapin Task, deploy Snapins is true/false/-1 = all/<IDOFSNAPIN>