GraphQL API: Profile
Unfollow another listener
Listeners can unfollow one another and when they do so they will then be removed from the followers
list of the other user and your following
list.
You use the listener ID to unfollow a listener.
Request
mutation {
profile {
unfollow(id: "LI:1291729195") {
status
}
}
}
* Add your OAuth bearer token to the Authorization
header
curl 'https://ce.pandora.com/api/v1/graphql/graphql' \
-H 'Authorization: Bearer ' \
-H 'Content-Type: application/json' \
-d '{"operationName":null,"variables":{},"query":"mutation { profile { unfollow(id: \"LI:1291729195\") { status } }}"}'
Response
{
"data": {
"profile": {
"unfollow": {
"status": "OK"
}
}
}
}