Python
import requests url = "https://platform.ankra.app/api/v1/org/sops/config" headers = {"Authorization": "Bearer <token>"} response = requests.get(url, headers=headers) print(response.text)
{ "organisation_id": "<string>", "age_public_key": "<string>", "enabled": true, "initialized": true }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
SOPS configuration retrieved