-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there any improvement in the API docs? #7
Comments
Yes, we are working on Swagger specification. If you need some specific use case that is currently available from the Cloud Console, you can just open the Chrome developer tools to see the REST API commands sent to the server, as the console is a full Restfull client calling the server. Hope we can get a formal definition of the whole API soon! |
when I ask for the device API what does "al" and "fn" mean? what are the possible values? |
Hi, enum io_type {
none = 0,
run = 1,
pson_in = 2,
pson_out = 3,
pson_in_pson_out = 4
};
enum access_type{
PRIVATE = 0,
PROTECTED = 1,
PUBLIC = 2,
NONE = 3
}; However, access level is not currently being used, as all the methods are private by default. The function type only describes if the resource is an input, output, both input/output/, or just a callback (run). This help to the API explorer and dashboards to know what resources are "usable" for some tasks, like using resources in dashboards. |
wondering if there will be more documentation for the API anytime soon
The text was updated successfully, but these errors were encountered: