Bungie
Bungie is a video game studio whose API provides access to game, player, and community data for titles such as Destiny.
- Base URL:
https://www.bungie.net/Platform - Auth:
header:X-API-Key(pass your key via theapiKeyinput)
Operations
app_getapplicationapiusage— GET /App/ApiUsage/{applicationId}/ — Get API usage by application for time frame specified. You can go as far back asapp_getbungieapplications— GET /App/FirstParty/ — Get list of applications created by Bungie.communitycontent_getcommunitycontent— GET /CommunityContent/Get/{sort}/{mediaFilter}/{page}/ — Returns community content.content_getcontentbyid— GET /Content/GetContentById/{id}/{locale}/ — Returns a content item referenced by idcontent_getcontentbytagandtype— GET /Content/GetContentByTagAndType/{tag}/{type}/{locale}/ — Returns the newest item that matches a given tag and Content Type.content_getcontenttype— GET /Content/GetContentType/{type}/ — Gets an object describing a particular variant of content.
Inputs
apiKey— your bungie API keyoperation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: app_getapplicationapiusage
apiKey: <your key>
Publishes
The keys a later task may reference as {{taskName.key}}. Referencing anything not listed here resolves to nothing at run time.
erroroperationresultstatus
Input Properties
Every property this tool accepts, from its own tool.iml.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
apiKey |
string | yes | — | DEPRECATED — bind an API Key credential to the task with credentialName instead. A key pasted here is stored in the workflow definition in clear and appears in every export of it. Still honoured for workflows built before the change. |
operation |
string | yes | — | One of: app_getapplicationapiusage, app_getbungieapplications, communitycontent_getcommunitycontent, content_getcontentbyid, content_getcontentbytagandtype, content_getcontenttype |
applicationId |
string | no | — | Path parameter applicationId (required by some operations). |
id |
string | no | — | Path parameter id (required by some operations). |
locale |
string | no | — | Path parameter locale (required by some operations). |
mediaFilter |
string | no | — | Path parameter mediaFilter (required by some operations). |
page |
string | no | — | Path parameter page (required by some operations). |
sort |
string | no | — | Path parameter sort (required by some operations). |
tag |
string | no | — | Path parameter tag (required by some operations). |
type |
string | no | — | Path parameter type (required by some operations). |
query |
string | no | — | Optional query params as a JSON object string, e.g. {"limit": 10}. |