Retrieving Information
Using the UBuild API you can retrieve information using the HTTP GET method.
Methods
Below are the endpoints you can use to retrieve information from UBuild:
/queue
Get all the currently queued builds.
Accepts:
- Query/Params
- "token" - The user's access token. (optional; depending on api.config)
Returns:
- A JSON array of objects representing queued builds.
/report
Gets a build reporting matching the UID provided.
Accepts:
- Query/Params
- "token" - The user's access token. (optional; defined in api.config)
- "uid" - The UID of the build for which you want to receive a report.
Returns:
- A JSON object representing the build report.
/reports
Gets all currently stored build reports.
Accepts:
- Query/Params
- "token" - The user's access token. (optional; defined in api.config)
Returns:
- A JSON array of objects representing build reports.