---
title: "Get a Person"
method: GET
path: "/persons/{id}"
tags: ["Persons"]
---

# Get a Person

`GET /persons/{id}`

Get a person identified by its uberall unique id

## Path parameters

- `id` string, required

## Response `200`

Successfully retrieved person

- object
  - `status` 'SUCCESS' | 'PENDING' | 'QUOTA_LIMIT_EXCEED' | 'NOT_AUTHORIZED' | 'FORBIDDEN' | 'BAD_ACCESS_TOKEN' | 'BAD_PRIVATE_KEY' | 'BAD_PUBLIC_KEY' | 'MISSING_PARAMETER' | 'INVALID_PARAMETER' | 'WRONG_PARAMETER_TYPE' | 'CONFLICT' | 'RESOURCE_LOCKED' | 'SERVER_ERROR' | 'ERROR' | 'NOT_FOUND' | 'BAD_REQUEST' | 'USER_ERROR' | 'PARTIAL_ERROR' | 'SERVICE_TEMPORARILY_UNAVAILABLE', required
  - `message` string — (optional) Holds further information about the response
  - `warnings` string[] — (optional) Holds further warnings
  - `response` object, required — The actual response object of the response
    - `person` object — Person
      - `title` string, required — The person's title: e.g. 'Store manager'
      - `description` string — Description for the person: e.g. 'Responsible for the day-to-day operations of the store'
      - `identifier` string — Unique Identifier for the Person
      - `listName` string — Name of the section this person belongs to
      - `id` integer — The uberall unique id for the person
      - `name` string, required — The person's full name
      - `image` object — Image of the person (use the Image object format)
        - `id` integer — The uberall unique id for the image
        - `url` string, required — Image url
        - `type` 'LOGO' | 'MAIN' | 'IMAGE', required — The image type, one of [LOGO, MAIN, IMAGE]
        - `description` string — Description of the image
        - `uid` string, required — user identifier of the image
      - `url` string — A valid url of a page with more details about the person

## Other responses

- `400` — Bad Request - The request was invalid or cannot be otherwise served
- `401` — Unauthorized - Authentication credentials are missing or invalid
- `403` — Forbidden - The request is understood, but has been refused or access is not allowed
- `404` — Not Found - The requested resource could not be found

---

[API](https://skmtc.net/uberall/apis/uberall-api.md) · [All operations](https://skmtc.net/uberall/apis/uberall-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/uberall/uberall-api/versions/a506e82d7cbe/schema)
