Create a guest identity for the shared playlist, or return an existing guest when guest_id is provided and still valid.
POST
/shared/playlists/{token}/guest
curl \
--request POST 'http://api.example.com/shared/playlists/{token}/guest' \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/json" \
--data '{
"first_name": "Guest",
"last_name": "string",
"guest_id": "string"
}'
Request examples
{
"first_name": "Guest",
"last_name": "string",
"guest_id": "string"
}
Response examples (200)
{}
Response examples (201)
{}