Send the share URL by email to a list of recipients (raw emails and/or existing person ids).
POST
/data/playlists/{playlist_id}/share/{token}/invite
curl \
--request POST 'http://api.example.com/data/playlists/{playlist_id}/share/{token}/invite' \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/json" \
--data '{"emails":["hello@example.com"],"person_ids":["string"],"message":"string"}'
Request examples
{
"emails": [
"hello@example.com"
],
"person_ids": [
"string"
],
"message": "string"
}
Response examples (200)
{
"sent": [
"string"
]
}