Soundcloud
SoundCloud is an online audio streaming and sharing platform for music, podcasts, and other audio content.
- Base URL:
https://api.soundcloud.com - Auth:
header:Authorization(pass your key via theapiKeyinput)
Operations
get_connect— GET /connect — The OAuth2 authorization endpoint. Your app redirects a user to this endpoint, allowing them to delegate access to their account.get_me— GET /me — Returns the authenticated user’s information.get_me_activities— GET /me/activities — Returns the authenticated user's activities.get_me_activities_all_own— GET /me/activities/all/own — Recent the authenticated user's activities.get_me_activities_tracks— GET /me/activities/tracks — Returns the authenticated user's recent track related activities.get_me_connections— GET /me/connections — Returns a list of the authenticated user's connected social accounts.
Inputs
apiKey— your soundcloud 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: get_connect
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: get_connect, get_me, get_me_activities, get_me_activities_all_own, get_me_activities_tracks, get_me_connections |
query |
string | no | — | Query-string parameters as a JSON object string, e.g. {"limit": 50}. Parsed and url-encoded onto the request. |