Identities

List identities

Lists identities that are either uploaded by the authenticated user or belong to groups the user is a member of. Results are paginated.

GET
/identity
AuthorizationBearer <token>

Token-based authentication using access tokens.

In: header

Response Body

Examples

curl -X GET "https://loading/identity"
{
  "identities": [
    {
      "created_at": "string",
      "created_by": "string",
      "groups": [
        "string"
      ],
      "identity_code": "string",
      "name": "string",
      "preprocessing_status": "string",
      "url": "string",
      "visibility": "shared"
    }
  ],
  "pagination": {
    "has_next": true,
    "has_prev": true,
    "page": 0,
    "pages": 0,
    "per_page": 0,
    "total": 0
  }
}
Empty