action spotify_get_playlists_tracks {
label: "Get Playlist Items\n"
description: "Get full details of the items of a playlist owned by a Spotify user.\n"
provider: spotify
method: GET
path: "/playlists/{playlist_id}/tracks"
encoding: json
input: {
type: "object"
properties: {
fields: {
type: "string"
description: "Filters for the query: a comma-separated list of the\nfields to return. If omitted, all fields are returned. For example, to get\njust the total number of items and the request limit:
`fields=total,limit`
A\ndot separator can be used to specify non-reoccurring fields, while parentheses\ncan be used to specify reoccurring fields within objects. For example, to\nget just the added date and user ID of the adder:
`fields=items(added_at,added_by.id)`
Use\nmultiple parentheses to drill down into nested objects, for example:
`fields=items(track(name,href,album(name,href)))`
Fields\ncan be excluded by prefixing them with an exclamation mark, for example:
`fields=items.track.album(!external_urls,images)`\n"
}
}
additionalProperties: false
}
output: {
type: "object"
additionalProperties: true
}
}