Proxy keys let a proxy on your own domain forward identify requests with the visitor's real details. See proxy integrations. Only admin management keys can manage them; a developer key answers 403.
Path parameter
organization_idstringrequiredYour organization, from Describe the key. A path naming any other organization answers404.
List proxy keys
GET
/api/v1/management/organizations/{organization_id}/proxy-credentials Management keyResponse
credentialsProxyKey[]Every proxy key, oldest first, revoked keys included.11 child fields
idstringThe key's ID.namestringThe key's name.environmentstringproduction,stagingordevelopment.regionstringThe key's data region.prefixstringThe start of the secret, such asfly_px_us_production.last4stringThe last four characters of the secret.statusstringactiveorrevoked.last_used_atstringWhen the key last authenticated a request.expires_atstringWhen the key stops working.created_atstringWhen the key was issued.revoked_atstringWhen the key was revoked.
Issue a proxy key
POST
/api/v1/management/organizations/{organization_id}/proxy-credentials Management keyBody
namestringrequiredWhat the key is called.environmentstringrequiredThe environment of the public keys it will forward:production,stagingordevelopment.
Answers 201 with credential, a proxy key as above, and secret, the whole key, shown once.
Revoke a proxy key
POST
/api/v1/management/organizations/{organization_id}/proxy-credentials/{proxy_credential_id}/revoke Management keyRefuses the key from the next request on, and answers with the revoked key.