GET
/
organizations
/
{organizationId}
/
api-keys
curl --request GET \
  --url https://api.concord.tech/privacy-v1/organizations/{organizationId}/api-keys \
  --header 'x-api-key: <api-key>'
{
  "offset": 123,
  "count": 123,
  "total": 123,
  "items": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "apiKey": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "organizationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "projectId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "role": "owner",
      "dateCreated": 123,
      "dateUpdated": 123,
      "permissions": [
        {
          "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "organizationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "organizationName": "<string>",
          "projectId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "projectName": "<string>",
          "role": "owner"
        }
      ]
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

organizationId
string
required

Query Parameters

apiKey
string
Maximum length: 64
name
string
Maximum length: 64
projectName
string
Maximum length: 256
role
Available options:
owner,
admin,
limited,
viewer,
none
projectIds
string[]
sort
string
order
string
offset
integer
default:0
Required range: x >= 0
limit
integer
default:100
Required range: x <= 1000

Response

200
application/json
Default Response
offset
integer
count
integer
total
integer
items
object[]