import requests
url = "https://platform.ankra.app/api/v1/credentials/ovh"
payload = {
"name": "<string>",
"application_key": "<string>",
"application_secret": "<string>",
"consumer_key": "<string>",
"project_id": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)