List all validities for a resource
Security
oAuth2ClientCredentials
GET
import requests
resource_id = "YOUR_resource_id_PARAMETER"
url = "https://api.qargo.com/v1/resources/resource/" + resource_id + "/validity"
headers = {"Authorization": "Bearer <YOUR_TOKEN_HERE>"}
response = requests.get(url, headers=headers)
data = response.json()
print(data)Response
{ "next_cursor": "string", "items": [ { … } ] }