-
Notifications
You must be signed in to change notification settings - Fork 0
API Introduction
Anthony Blackshaw edited this page May 8, 2018
·
1 revision
Hanger51 provides a HTTP API for managing assets (files and images). In production environments the API should always be accessed over a HTTPS connection (to prevent API keys being discovered).
All API endpoints must be authenticated, to authenticate a call simply specify a valid API key against the parameter api_key
.
All data is sent/returned in JSON format. Date/times use the format YYYY-MM-DD HH:MM:SS and the time zone is set in the event configuration.
Responses always have the following structure:
{
"status": "{success|fail}",
"payload": {...optional payload containing the response...}
}