GET
/
organizations
/
{organizationId}
/
users
curl --request GET \
  --url https://api.concord.tech/privacy-v1/organizations/{organizationId}/users \
  --header 'x-api-key: <api-key>'
{
  "offset": 123,
  "count": 123,
  "total": 123,
  "items": [
    {
      "inviteCode": [
        "<any>"
      ],
      "inviteDate": [
        "<any>"
      ],
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "dateCreated": 123,
      "dateUpdated": 123,
      "email": "jsmith@example.com",
      "accountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "organizationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "organizationName": "<string>",
      "status": "pending",
      "name": "<string>",
      "notes": "<string>",
      "permissions": [
        {
          "projectId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "projectName": "<string>",
          "role": "owner"
        }
      ],
      "account": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "firstName": "<string>",
        "lastName": "<string>",
        "email": "<string>",
        "phoneNumber": "<string>"
      }
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

organizationId
string
required

Query Parameters

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[]