GET
/
organizations
/
{organizationId}
/
emails
curl --request GET \
  --url https://api.concord.tech/privacy-v1/organizations/{organizationId}/emails \
  --header 'x-api-key: <api-key>'
{
  "offset": 123,
  "count": 123,
  "total": 123,
  "items": [
    {
      "dateCreated": 123,
      "email": "jsmith@example.com",
      "id": "default",
      "name": "<string>",
      "organizationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "projects": [
        {
          "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "name": "<string>"
        }
      ],
      "status": "verified"
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

organizationId
string
required

Query Parameters

name
string
Maximum length: 64
email
string
Maximum length: 64
status
Available options:
verified,
pending
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[]