get_session_tracks
Retrieve all tracks from a specified DJ session history using the session's unique identifier. Access detailed track information with performance context for analysis or reference.
Instructions
Get all tracks from a specific DJ history session.
Args: session_id: The session's unique identifier
Returns: List of tracks in the session with performance context
Input Schema
Name | Required | Description | Default |
---|---|---|---|
session_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"session_id": {
"title": "Session Id",
"type": "string"
}
},
"required": [
"session_id"
],
"type": "object"
}