Download a Log Export
Authorizations
Path parameters
exportIdstringRequired
Responses
200
Successful response
application/json
get
from portkey_ai import Portkey
portkey = Portkey(
api_key="PORTKEY_API_KEY"
)
res = portkey.logs.exports.download(
export_id='EXPORT_ID'
)
print(res)
200
Successful response
{
"signed_url": "https://example.com"
}
Last updated
Was this helpful?