added ability to delete entries. Added MAL RefreshToken Function

This commit is contained in:
2024-09-18 14:06:11 -04:00
parent 00930f611e
commit c7694900e3
2 changed files with 60 additions and 0 deletions

View File

@ -0,0 +1,29 @@
meta {
name: Delete Entry
type: http
seq: 2
}
post {
url: https://api.simkl.com/sync/history/remove
body: json
auth: none
}
headers {
Authorization: Bearer {{SIMKL_AUTH_TOKEN}}
Content-Type: application/json
simkl-api-key: {{SIMKL_CLIENT_ID}}
}
body:json {
{
"shows": [
{
"ids": {
"simkl": 909121
}
}
]
}
}