> ## Documentation Index
> Fetch the complete documentation index at: https://docs.outseta.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieve a person.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/crm/people/{personUid}
openapi: 3.0.0
info:
  title: Outseta API
  description: >-
    # Outseta REST API


    The Outseta REST API lets you manage people, accounts, subscriptions,
    invoices, email, and support resources over HTTPS. Responses are JSON unless
    an endpoint documents another format, such as an invoice PDF.


    **Base URL:** `https://{your-domain}.outseta.com/api/v1/`


    ## Contents


    - [Quick start](#quick-start)

    - [Authentication](#authentication)
      - [Server-side API keys](#server-side-api-keys)
      - [Client-side bearer tokens](#client-side-bearer-tokens)
      - [Two-factor authentication](#two-factor-authentication-2fa-during-login)
      - [Forced 2FA enrollment](#forced-2fa-enrollment-during-login)
    - [Working with collections](#working-with-collections)
      - [Field selection](#field-selection)
      - [Pagination](#pagination)
      - [Sorting](#sorting)
      - [Filtering](#filtering)
    - [Account billing stages](#account-billing-stages)

    - [Error responses](#error-responses)

    - [Rate limits](#rate-limits)

    - [Support](#support)

    - [Webhooks](#webhooks)

    - [Endpoint index](#endpoint-index)


    ## Quick start


    Authenticate every request with either a server-side API key or a user
    bearer token. For example:


    ```http

    GET /api/v1/crm/accounts?limit=20&fields=Uid,Name HTTP/1.1

    Host: example.outseta.com

    Authorization: Outseta {api_key}:{api_secret}

    ```


    List endpoints return a consistent envelope:


    ```json

    {
      "metadata": {
        "limit": 20,
        "offset": 0,
        "total": 142
      },
      "items": []
    }

    ```


    Use `limit` and `offset` for [pagination](#pagination), `fields` to control
    the response shape, `orderBy` for sorting, and entity properties for
    filtering.


    General request behavior:


    - Use HTTPS. HTTP requests are redirected to HTTPS with `301`.

    - `GET` retrieves, `POST` creates or invokes an action, `PUT` updates, and
    `DELETE` removes.

    - The API returns standard HTTP status codes. Error details are returned as
    JSON.

    - Add `donotlog=1` to a request that should not appear in the activity log.


    ## Authentication


    All API requests require authentication via one of two methods:


    ### Server-Side (API Keys)


    Use API keys for server-to-server integrations. Create keys at **Settings >
    Integrations > API Keys**. Make sure to record the secret key when you
    create it.


    ```

    Authorization: Outseta {api_key}:{api_secret}

    ```


    **Example:**

    ```

    Authorization: Outseta
    ce08fd5a-e1ee-4472-9c5f-b7575d8369b2:74fc1d2242a4eb7336d34b0e40cfbc5f

    ```


    > **Warning:** Never expose API keys in client-side code. The API key and
    secret combined give full access to all data in your account.


    ### Client-Side (Bearer Token)


    Do **not** use API keys on the client side — they can be easily copied.
    Instead, obtain a JWT access token by calling the `POST /tokens` endpoint
    from the server side with your credentials, then use it on the client:


    ```

    Authorization: bearer {access_token}

    ```


    Tokens are JWTs containing claims such as `PersonUid`, `AccountUid`, and
    subscription details. Tokens expire after approximately one year.


    Verify tokens server-side using Outseta's [JWKS
    endpoint](https://{your-domain}.outseta.com/.well-known/jwks.json).


    ### Two-Factor Authentication (2FA) During Login


    When a user has enabled two-factor authentication, a username and password
    are

    no longer sufficient to obtain a token — the login becomes a two-step
    exchange.

    You do not need to call any endpoint up front to discover whether 2FA is on;
    the

    response to `POST /tokens` tells you.


    **Step 1 — Attempt login as usual.**


    ```

    POST /api/v1/tokens

    Content-Type: application/json


    { "username": "user@example.com", "password": "their-password" }

    ```


    If the user has no 2FA enabled, you get the normal `200` token response and

    you're done:


    ```json

    { "access_token": "eyJ...", "token_type": "Bearer", "expires_in": 31536000 }

    ```


    If the user **does** have 2FA enabled, the password is verified and the
    response

    is `202 Accepted` with a challenge instead of a token:


    ```json

    {
      "two_factor_required": true,
      "challenge_token": "eyJ...",
      "mechanism": "Totp",
      "masked_destination": "",
      "expires_in": 600,
      "available_mechanisms": ["Totp", "Email"],
      "recovery_codes_available": true
    }

    ```


    This single response answers everything you need to know about the user's
    2FA:


    | Field | Meaning |

    |-------|---------|

    | `mechanism` | The method this challenge targets: `Email` or `Totp`
    (authenticator app). **If `Email`, a one-time code has already been emailed
    to the user.** If `Totp`, nothing is sent — the user reads the current code
    from their authenticator app. |

    | `masked_destination` | Where an emailed code was sent, masked for display
    (e.g. `b***@outseta.com`). Empty when `mechanism` is `Totp`. |

    | `available_mechanisms` | Every method the user has enrolled. Use this to
    show the user their options (and to enable "use a different method"). |

    | `recovery_codes_available` | Whether the user has recovery codes they can
    fall back to. |

    | `challenge_token` | Opaque, short-lived token (valid for `expires_in`
    seconds, 600 = 10 minutes) that ties the next request to this challenge.
    Echo it back verbatim. |


    > When both an authenticator app and email are enrolled, Outseta picks the

    > authenticator app (`Totp`) as the default `mechanism` because it requires
    no

    > "check your inbox" step. The user can switch to email — see below.


    **Step 2 — Submit the code to get the token.**


    Collect the 6-digit code from the user (from their email or authenticator
    app)

    and post it along with the `challenge_token`:


    ```

    POST /api/v1/tokens/two-factor

    Content-Type: application/json


    { "challenge_token": "eyJ...", "code": "123456" }

    ```


    On success you receive the final JWT — the same shape as a normal login, and
    the

    token you use as the `Authorization: bearer {access_token}` for subsequent
    calls:


    ```json

    { "access_token": "eyJ...", "token_type": "Bearer", "expires_in": 31536000 }

    ```


    Error responses:


    | Status | Body | Meaning |

    |--------|------|---------|

    | `400` | `invalid_grant` | The code was wrong or missing. The challenge
    allows up to 5 attempts before it locks. |

    | `410` | `challenge_expired` | The challenge token expired (older than 10
    minutes). Start over at `POST /tokens`. |

    | `429` | — | Too many attempts; retry after a minute. |


    **Optional helper endpoints** (all take the `challenge_token` from Step 1):


    - **Resend an emailed code** — `POST /api/v1/tokens/two-factor/resend` with
      `{ "challenge_token": "..." }`. Returns a fresh challenge (same shape as the
      `202` above). Only valid for `Email` challenges; a `Totp` challenge returns
      `400` `not_supported`.
    - **Switch to a different method** — `POST
    /api/v1/tokens/two-factor/switch-mechanism`
      with `{ "challenge_token": "...", "mechanism": "Email" }`. Use this when the
      user picks one of the other `available_mechanisms` (e.g. they can't reach their
      authenticator). Returns a fresh challenge for the chosen mechanism (and sends a
      code when switching to `Email`).
    - **Use a recovery code** — `POST /api/v1/tokens/two-factor/recovery` with
      `{ "challenge_token": "...", "recovery_code": "abcd-efgh-ijkl" }`. Returns the
      final JWT, exactly like Step 2. Each recovery code is single-use.

    ### Forced 2FA Enrollment During Login


    Accounts can be configured to *require* 2FA. When a user who has not yet set
    it

    up tries to log in, they must enroll a method before they can get a token —

    all in the same login flow.


    **Step 1 — Attempt login.** Exactly as above. If the account forces 2FA and
    the

    user has no method enrolled, `POST /api/v1/tokens` verifies the password and

    returns `202 Accepted` with `two_factor_enrollment_required` (instead of

    `two_factor_required`):


    ```json

    {
      "two_factor_enrollment_required": true,
      "challenge_token": "eyJ...",
      "expires_in": 600
    }

    ```


    That `challenge_token` is the **enrollment token** — it proves the user's

    identity for the rest of the flow. Pass it as `enrollment_token` in every
    call

    below. Let the user pick a method (email or an authenticator app) and run
    the

    matching two-step *begin → confirm* sequence.


    **Option A — Enroll an authenticator app (recommended).**


    1. Begin — exchange the enrollment token for a shared secret:

       ```
       POST /api/v1/tokens/two-factor/enroll/totp/begin
       { "enrollment_token": "eyJ..." }
       ```
       ```json
       {
         "challenge_token": "eyJ...",
         "secret": "JBSWY3DPEHPK3PXP",
         "otpauth_uri": "otpauth://totp/Acme:user@example.com?secret=...&issuer=Acme",
         "qr_code_png_base64": "iVBORw0KGgo...",
         "expires_in": 600
       }
       ```
       Have the user add the secret to their authenticator app — scan
       `qr_code_png_base64` (render it as an image), open `otpauth_uri`, or type the
       `secret` manually.

    2. Confirm — submit the first code the app generates:

       ```
       POST /api/v1/tokens/two-factor/enroll/totp/confirm
       { "enrollment_token": "eyJ...", "challenge_token": "eyJ...", "code": "123456" }
       ```

    **Option B — Enroll email.**


    1. Begin — a code is emailed to the user:

       ```
       POST /api/v1/tokens/two-factor/enroll/email/begin
       { "enrollment_token": "eyJ..." }
       ```
       ```json
       { "challenge_token": "eyJ...", "mechanism": "Email", "masked_destination": "b***@outseta.com", "expires_in": 600 }
       ```

    2. Confirm — submit the emailed code:

       ```
       POST /api/v1/tokens/two-factor/enroll/email/confirm
       { "enrollment_token": "eyJ...", "challenge_token": "eyJ...", "code": "123456" }
       ```

    **Confirm response (both options).** A successful confirm enables the method

    *and* completes the login in one shot — it returns the final JWT plus the
    user's

    recovery codes:


    ```json

    {
      "confirmed": true,
      "recovery_codes": ["abcd-efgh-ijkl", "mnop-qrst-uvwx", "..."],
      "access_token": "eyJ...",
      "token_type": "Bearer",
      "expires_in": 31536000
    }

    ```


    > Show `recovery_codes` to the user **once** and prompt them to save the
    codes —

    > they are generated as part of first-time enrollment and are never returned

    > again. Each is single-use at `POST /api/v1/tokens/two-factor/recovery`.


    Notes:


    - Both `begin` calls pass only the `enrollment_token`; both `confirm` calls
    pass
      the `enrollment_token`, the `challenge_token` from the matching `begin`, and the
      `code`.
    - `401` means the enrollment token is missing/invalid/expired (restart at
    Step 1);
      `403` means forced enrollment does not apply to the user; `400` (`invalid_grant`)
      means a wrong code; `410` (`challenge_expired`) means the challenge timed out.
    - Each token/challenge is valid for 10 minutes (`expires_in` = 600). If the
    user
      takes too long, restart at `POST /api/v1/tokens`.
    - After enrollment, the user is a normal 2FA user — subsequent logins follow
    the
      standard challenge flow described above, not this enrollment flow.

    ## Working with collections


    Collection endpoints support field selection, pagination, sorting, and
    filtering. Unless an endpoint says otherwise, these options can be combined
    in the same request.


    ### Field selection


    When you make an API request, you'll automatically get all the basic
    information from the main object and its immediate child objects. Referenced
    objects beyond the first level are returned as `null`.


    Change this behavior using the `fields` query parameter:


    - **Go deeper** — Request fields lower down in the object tree:
    `?fields=CurrentSubscription.Plan.*`

    - **Go lighter** — Request only the essentials for faster performance:
    `?fields=Uid,Name`

    - **Combination** — `?fields=Uid,Name,CurrentSubscription.Plan.Uid`

    - **Wildcard** — Use `*` to get all fields in an object: `?fields=*` or
    `?fields=CurrentSubscription.Plan.*`


    > **Tip:** When expanding nested paths, include `*` and intermediate path
    segments (e.g., `PersonAccount.*`) to preserve root-level and intermediate
    fields.


    **Examples:**


    ```

    # Get the current subscription plan UID for an account

    GET /crm/accounts/{uid}?fields=CurrentSubscription.Plan.Uid


    # Get the account UID and plan UID for a list of accounts

    GET /crm/accounts?fields=Uid,CurrentSubscription.Plan.Uid


    # Get the full plan object for an account's current subscription

    GET /crm/accounts/{uid}?fields=CurrentSubscription.Plan.*


    # Get a person with their account and subscription info

    GET
    /crm/people/{uid}?fields=Uid,PersonAccount.Account.CurrentSubscription.Plan.Uid

    ```


    If your request includes fields from a child object you will be limited to
    retrieving **25 items** per page. The maximum for requests not expanding
    child object fields is **100 items**.


    ### Pagination


    List endpoints return paginated results with a `metadata` object and an
    `items` array:


    ```json

    {
      "metadata": {
        "limit": 25,
        "offset": 0,
        "total": 142
      },
      "items": [ ... ]
    }

    ```


    | Parameter | Type | Default | Description |

    |-----------|------|---------|-------------|

    | `offset` | integer | `0` | Page number (zero-based) |

    | `limit` | integer | `25` | Maximum number of records per page |


    **Examples:**

    ```

    ?offset=0&limit=20    # returns results 1-20

    ?offset=1&limit=20    # returns results 21-40

    ```


    ### Sorting


    Sort results using the `orderBy` parameter with a property name and
    direction:


    ```

    ?orderBy=PropertyName+DESC

    ```


    ### Filtering


    Filter results by passing entity properties as query parameters.


    #### Basic filtering


    Filter on any field using the field name as a query parameter:


    ```

    GET /crm/people?Email=john@example.com

    GET /crm/accounts?AccountStage=2

    ```


    #### Wildcard matching


    | Pattern | Match Type | Example |

    |---------|-----------|---------|

    | `*value` | Ends with | `?Email=*@example.com` |

    | `value*` | Starts with | `?Name=Acme*` |

    | `*value*` | Contains | `?Name=*corp*` |


    #### Comparison operators


    For advanced filtering, append comparison operators to field names:


    | Operator | Description | Example |

    |----------|-------------|---------|

    | `__gt` | Greater than | `Created__gt=2024-01-01` |

    | `__gte` | Greater than or equal | `Amount__gte=100` |

    | `__lt` | Less than | `Created__lt=2024-12-31` |

    | `__lte` | Less than or equal | `Amount__lte=500` |

    | `__ne` | Not equal | `Status__ne=Active` |

    | `__isnull` | Is null (true/false) | `ProfileImageS3Url__isnull=true` |


    **Examples:**


    ```

    # Date filtering

    GET /crm/accounts?Created__gt=2024-01-01

    GET /billing/subscriptions?EndDate__lt=2024-08-01


    # Numeric filtering

    GET /billing/invoices?Amount__gte=1000


    # Null value filtering

    GET /crm/people?ProfileImageS3Url__isnull=true


    # Multiple filters combined with field selection

    GET
    /billing/subscriptions?StartDate__gte=2024-01-01&Rate__lt=100&DiscountCode__isnull=false&fields=Uid,Amount,StartDate,DiscountCode,Plan.Name

    ```


    ## Account Billing Stages


    Account stages reflect the financial standing of each account and are not
    directly editable — they change automatically based on subscription
    activity.


    | Value | Stage | Description |

    |-------|-------|-------------|

    | `2` | Trialing | Currently on a free trial or free plan |

    | `3` | Subscribing | Active paid subscription (contributes to MRR) |

    | `4` | Canceling | Customer has indicated intent to cancel |

    | `5` | Expired | Subscription has ended after cancellation |

    | `6` | Trial Expired | Free trial ended without conversion to paid |


    Filter by stage: `GET /crm/accounts?AccountStage=3` returns all actively
    subscribing accounts.


    ## Error Responses


    | Status Code | Description |

    |-------------|-------------|

    | `200` | Success |

    | `301` | Redirect — HTTP requests are redirected to HTTPS |

    | `400` | Bad request — invalid parameters or Uid format |

    | `401` | Unauthorized — missing or invalid authentication |

    | `404` | Entity not found |

    | `4XX` / `5XX` | Client or server error |


    Validation errors return a JSON body with `ErrorMessage` and `PropertyName`
    fields:


    ```json

    {
      "ErrorMessage": "Invalid company email",
      "PropertyName": "Email"
    }

    ```


    ## Rate Limits


    Requests authorized by an API Key should not exceed **4 requests/second**.


    ## Support


    For help regarding the Outseta API please email
    [support@outseta.com](mailto:support@outseta.com).


    ## Webhooks


    Use **Activity Notifications** to receive real-time callbacks when events
    occur in Outseta. Configure webhook URLs and their SHA256 signing secrets at
    **Settings > Notifications**. Always verify the signature before processing
    a request.


    Outseta sends an HTTP `POST` to each registered callback URL. The payload is
    the activity's entity restricted to a subset of fields, with an
    `ActivityEventData` property carrying activity-specific data.


    | Activity | Entity | Payload schema |

    | --- | --- | --- |

    | `AccountCreated` | `Account` | `AccountCreatedWebhookPayload` |

    | `AccountUpdated` | `Account` | `AccountUpdatedWebhookPayload` |

    | `AccountAddPerson` | `Account` | `AccountAddPersonWebhookPayload` |

    | `AccountStageUpdated` | `Account` | `AccountStageUpdatedWebhookPayload` |

    | `AccountDeleted` | `Account` | `AccountDeletedWebhookPayload` |

    | `AccountBillingInformationUpdated` | `Account` |
    `AccountBillingInformationUpdatedWebhookPayload` |

    | `AccountSubscriptionPlanUpdated` | `Account` |
    `AccountSubscriptionPlanUpdatedWebhookPayload` |

    | `AccountSubscriptionPaymentCollected` | `Account` |
    `AccountSubscriptionPaymentCollectedWebhookPayload` |

    | `AccountSubscriptionPaymentDeclined` | `Account` |
    `AccountSubscriptionPaymentDeclinedWebhookPayload` |

    | `AccountBillingInformationRequested` | `Account` |
    `AccountBillingInformationRequestedWebhookPayload` |

    | `AccountBillingInvoiceEmailSent` | `Invoice` |
    `AccountBillingInvoiceEmailSentWebhookPayload` |

    | `AccountRemovePerson` | `Account` | `AccountRemovePersonWebhookPayload` |

    | `AccountPaidSubscriptionCreated` | `Account` |
    `AccountPaidSubscriptionCreatedWebhookPayload` |

    | `AccountBillingInformationRemoved` | `Account` |
    `AccountBillingInformationRemovedWebhookPayload` |

    | `AccountPrimaryPersonUpdated` | `Account` |
    `AccountPrimaryPersonUpdatedWebhookPayload` |

    | `AccountBillingInvoiceCreated` | `Invoice` |
    `AccountBillingInvoiceCreatedWebhookPayload` |

    | `AccountSubscriptionStarted` | `Account` |
    `AccountSubscriptionStartedWebhookPayload` |

    | `AccountSubscriptionRenewalExtended` | `Account` |
    `AccountSubscriptionRenewalExtendedWebhookPayload` |

    | `AccountSubscriptionAddOnsChanged` | `Account` |
    `AccountSubscriptionAddOnsChangedWebhookPayload` |

    | `AccountSubscriptionCancellationRequested` | `Account` |
    `AccountSubscriptionCancellationRequestedWebhookPayload` |

    | `AccountBillingInvoiceDeleted` | `Invoice` |
    `AccountBillingInvoiceDeletedWebhookPayload` |

    | `AccountPersonRoleUpdated` | `Account` |
    `AccountPersonRoleUpdatedWebhookPayload` |

    | `PersonCreated` | `Person` | `PersonCreatedWebhookPayload` |

    | `PersonUpdated` | `Person` | `PersonUpdatedWebhookPayload` |

    | `PersonDeleted` | `Person` | `PersonDeletedWebhookPayload` |

    | `PersonLogin` | `Account` | `PersonLoginWebhookPayload` |

    | `PersonListSubscribed` | `Person` | `PersonListSubscribedWebhookPayload` |

    | `PersonListUnsubscribed` | `Person` |
    `PersonListUnsubscribedWebhookPayload` |

    | `PersonSegmentAdded` | `Person` | `PersonSegmentAddedWebhookPayload` |

    | `PersonSegmentRemoved` | `Person` | `PersonSegmentRemovedWebhookPayload` |

    | `PersonEmailOpened` | `Person` | `PersonEmailOpenedWebhookPayload` |

    | `PersonEmailClicked` | `Person` | `PersonEmailClickedWebhookPayload` |

    | `PersonEmailBounce` | `Person` | `PersonEmailBounceWebhookPayload` |

    | `PersonEmailSpam` | `Person` | `PersonEmailSpamWebhookPayload` |

    | `PersonSupportTicketCreated` | `Person` |
    `PersonSupportTicketCreatedWebhookPayload` |

    | `PersonSupportTicketUpdated` | `Person` |
    `PersonSupportTicketUpdatedWebhookPayload` |

    | `PersonLeadFormSubmitted` | `Person` |
    `PersonLeadFormSubmittedWebhookPayload` |

    | `PersonListConfirmed` | `Person` | `PersonListConfirmedWebhookPayload` |

    | `PersonEmailSubscribed` | `Person` | `PersonEmailSubscribedWebhookPayload`
    |

    | `PersonEmailUnsubscribed` | `Person` |
    `PersonEmailUnsubscribedWebhookPayload` |

    | `PersonTemporaryPasswordSet` | `Person` |
    `PersonTemporaryPasswordSetWebhookPayload` |

    | `PersonSupportTicketClosed` | `Person` |
    `PersonSupportTicketClosedWebhookPayload` |

    | `PersonTwoFactorRecoveryCodesRegenerated` | `Person` |
    `PersonTwoFactorRecoveryCodesRegeneratedWebhookPayload` |

    | `DealCreated` | `Deal` | `DealCreatedWebhookPayload` |

    | `DealUpdated` | `Deal` | `DealUpdatedWebhookPayload` |

    | `DealDeleted` | `Deal` | `DealDeletedWebhookPayload` |

    | `DealDueDate` | `Deal` | `DealDueDateWebhookPayload` |

    | `PlanCreated` | `Plan` | `PlanCreatedWebhookPayload` |

    | `PlanUpdated` | `Plan` | `PlanUpdatedWebhookPayload` |

    | `AddOnCreated` | `AddOn` | `AddOnCreatedWebhookPayload` |

    | `AddOnUpdated` | `AddOn` | `AddOnUpdatedWebhookPayload` |

    | `DiscordUserLinked` | `Person` | `DiscordUserLinkedWebhookPayload` |

    | `DiscordUserAddedToServer` | `Person` |
    `DiscordUserAddedToServerWebhookPayload` |

    | `DiscordUserRolesUpdated` | `Person` |
    `DiscordUserRolesUpdatedWebhookPayload` |

    | `DiscordUserRemovedFromServer` | `Person` |
    `DiscordUserRemovedFromServerWebhookPayload` |


    `TaskCreated` and `TaskUpdated` are not listed above because their payload
    is polymorphic: the webhook is rooted on the entity the task is associated
    with (an `Account`, `Person`, or `Deal`), with the task itself carried in
    the `ActivityEventData` property. Because the root entity varies per task,
    they do not have a single fixed payload schema.




    | Activity | Entity | Payload schema |

    | --- | --- | --- |

    | `AccountCreated` | `Account` | `AccountCreatedWebhookPayload` |

    | `AccountUpdated` | `Account` | `AccountUpdatedWebhookPayload` |

    | `AccountAddPerson` | `Account` | `AccountAddPersonWebhookPayload` |

    | `AccountStageUpdated` | `Account` | `AccountStageUpdatedWebhookPayload` |

    | `AccountDeleted` | `Account` | `AccountDeletedWebhookPayload` |

    | `AccountBillingInformationUpdated` | `Account` |
    `AccountBillingInformationUpdatedWebhookPayload` |

    | `AccountSubscriptionPlanUpdated` | `Account` |
    `AccountSubscriptionPlanUpdatedWebhookPayload` |

    | `AccountSubscriptionPaymentCollected` | `Account` |
    `AccountSubscriptionPaymentCollectedWebhookPayload` |

    | `AccountSubscriptionPaymentDeclined` | `Account` |
    `AccountSubscriptionPaymentDeclinedWebhookPayload` |

    | `AccountBillingInformationRequested` | `Account` |
    `AccountBillingInformationRequestedWebhookPayload` |

    | `AccountBillingInvoiceEmailSent` | `Invoice` |
    `AccountBillingInvoiceEmailSentWebhookPayload` |

    | `AccountRemovePerson` | `Account` | `AccountRemovePersonWebhookPayload` |

    | `AccountPaidSubscriptionCreated` | `Account` |
    `AccountPaidSubscriptionCreatedWebhookPayload` |

    | `AccountBillingInformationRemoved` | `Account` |
    `AccountBillingInformationRemovedWebhookPayload` |

    | `AccountPrimaryPersonUpdated` | `Account` |
    `AccountPrimaryPersonUpdatedWebhookPayload` |

    | `AccountBillingInvoiceCreated` | `Invoice` |
    `AccountBillingInvoiceCreatedWebhookPayload` |

    | `AccountSubscriptionStarted` | `Account` |
    `AccountSubscriptionStartedWebhookPayload` |

    | `AccountSubscriptionRenewalExtended` | `Account` |
    `AccountSubscriptionRenewalExtendedWebhookPayload` |

    | `AccountSubscriptionAddOnsChanged` | `Account` |
    `AccountSubscriptionAddOnsChangedWebhookPayload` |

    | `AccountSubscriptionCancellationRequested` | `Account` |
    `AccountSubscriptionCancellationRequestedWebhookPayload` |

    | `AccountBillingInvoiceDeleted` | `Invoice` |
    `AccountBillingInvoiceDeletedWebhookPayload` |

    | `AccountPersonRoleUpdated` | `Account` |
    `AccountPersonRoleUpdatedWebhookPayload` |

    | `PersonCreated` | `Person` | `PersonCreatedWebhookPayload` |

    | `PersonUpdated` | `Person` | `PersonUpdatedWebhookPayload` |

    | `PersonDeleted` | `Person` | `PersonDeletedWebhookPayload` |

    | `PersonLogin` | `Account` | `PersonLoginWebhookPayload` |

    | `PersonListSubscribed` | `Person` | `PersonListSubscribedWebhookPayload` |

    | `PersonListUnsubscribed` | `Person` |
    `PersonListUnsubscribedWebhookPayload` |

    | `PersonSegmentAdded` | `Person` | `PersonSegmentAddedWebhookPayload` |

    | `PersonSegmentRemoved` | `Person` | `PersonSegmentRemovedWebhookPayload` |

    | `PersonEmailOpened` | `Person` | `PersonEmailOpenedWebhookPayload` |

    | `PersonEmailClicked` | `Person` | `PersonEmailClickedWebhookPayload` |

    | `PersonEmailBounce` | `Person` | `PersonEmailBounceWebhookPayload` |

    | `PersonEmailSpam` | `Person` | `PersonEmailSpamWebhookPayload` |

    | `PersonSupportTicketCreated` | `Person` |
    `PersonSupportTicketCreatedWebhookPayload` |

    | `PersonSupportTicketUpdated` | `Person` |
    `PersonSupportTicketUpdatedWebhookPayload` |

    | `PersonLeadFormSubmitted` | `Person` |
    `PersonLeadFormSubmittedWebhookPayload` |

    | `PersonListConfirmed` | `Person` | `PersonListConfirmedWebhookPayload` |

    | `PersonEmailSubscribed` | `Person` | `PersonEmailSubscribedWebhookPayload`
    |

    | `PersonEmailUnsubscribed` | `Person` |
    `PersonEmailUnsubscribedWebhookPayload` |

    | `PersonTemporaryPasswordSet` | `Person` |
    `PersonTemporaryPasswordSetWebhookPayload` |

    | `PersonSupportTicketClosed` | `Person` |
    `PersonSupportTicketClosedWebhookPayload` |

    | `PersonTwoFactorRecoveryCodesRegenerated` | `Person` |
    `PersonTwoFactorRecoveryCodesRegeneratedWebhookPayload` |

    | `DealCreated` | `Deal` | `DealCreatedWebhookPayload` |

    | `DealUpdated` | `Deal` | `DealUpdatedWebhookPayload` |

    | `DealDeleted` | `Deal` | `DealDeletedWebhookPayload` |

    | `DealDueDate` | `Deal` | `DealDueDateWebhookPayload` |

    | `PlanCreated` | `Plan` | `PlanCreatedWebhookPayload` |

    | `PlanUpdated` | `Plan` | `PlanUpdatedWebhookPayload` |

    | `AddOnCreated` | `AddOn` | `AddOnCreatedWebhookPayload` |

    | `AddOnUpdated` | `AddOn` | `AddOnUpdatedWebhookPayload` |

    | `DiscordUserLinked` | `Person` | `DiscordUserLinkedWebhookPayload` |

    | `DiscordUserAddedToServer` | `Person` |
    `DiscordUserAddedToServerWebhookPayload` |

    | `DiscordUserRolesUpdated` | `Person` |
    `DiscordUserRolesUpdatedWebhookPayload` |

    | `DiscordUserRemovedFromServer` | `Person` |
    `DiscordUserRemovedFromServerWebhookPayload` |


    `TaskCreated` and `TaskUpdated` are not listed above because their payload
    is polymorphic: the webhook is rooted on the entity the task is associated
    with (an `Account`, `Person`, or `Deal`), with the task itself carried in
    the `ActivityEventData` property. Because the root entity varies per task,
    they do not have a single fixed payload schema.
  version: v1
servers:
  - url: https://{subdomain}.outseta.com
    description: Your Outseta account
    variables:
      subdomain:
        default: your-subdomain
        description: >-
          Your Outseta account subdomain — the part before ".outseta.com" in
          your admin URL.
security: []
paths:
  /api/v1/crm/people/{personUid}:
    get:
      tags:
        - CRM
      summary: Retrieve a person.
      operationId: Person_GetPerson
      parameters:
        - name: personUid
          in: path
          required: true
          description: The person's unique identifier
          schema:
            type: string
            nullable: true
          x-position: 1
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Person'
        '400':
          description: Invalid Uid format
        '401':
          description: Unauthorized
        '404':
          description: Person not found
      security:
        - Bearer: []
        - ApiKey: []
components:
  schemas:
    Person:
      example:
        Uid: string
        _objectType: string
        Created: string
        Updated: string
        ActivityEventData: {}
        SchemaLessData: {}
        Email: string
        FirstName: string
        LastName: string
        MailingAddress:
          Uid: string
          _objectType: string
          Created: string
          Updated: string
          ActivityEventData: {}
          AddressLine1: string
          AddressLine2: string
          AddressLine3: string
          City: string
          State: string
          PostalCode: string
          Country: string
          GeoLocation: string
        PasswordLastUpdated: string
        PasswordMustChange: false
        PhoneMobile: string
        PhoneWork: string
        ProfileImageS3Url: string
        Title: string
        Timezone: string
        Language: string
        IPAddress: string
        Referer: string
        UserAgent: string
        LastLoginDateTime: string
        OAuthGoogleProfileId: string
        PersonAccount:
          - Uid: string
            _objectType: string
            Created: string
            Updated: string
            ActivityEventData: {}
            Person: {}
            Account: {}
            IsPrimary: false
            ReceiveInvoices: false
            Role: 1
        DealPeople:
          - Uid: string
            _objectType: string
            Created: string
            Updated: string
            ActivityEventData: {}
            Person: {}
            Deal: {}
        LeadFormSubmissions:
          - Uid: string
            _objectType: string
            Created: string
            Updated: string
            ActivityEventData: {}
            Person: {}
            LeadForm: {}
            RefererURL: string
            RecaptchaToken: string
            RecaptchaSiteKey: string
        Account:
          Uid: string
          _objectType: string
          Created: string
          Updated: string
          ActivityEventData: {}
          SchemaLessData: {}
          StripeId: string
          IsLivemode: false
          Name: string
          ClientIdentifier: string
          Currency: string
          InvoiceNotes: string
          IsDemo: false
          BillingAddress: {}
          MailingAddress: {}
          AccountStage: 2
          PaymentInformation: {}
          PersonAccount: []
          StripeDefaultPaymentMethodId: string
          StripeInvoices: []
          StripePaymentMethods: []
          StripeSubscriptions: []
          Subscriptions: []
          Deals: []
          LastLoginDateTime: string
          AccountSpecificPageUrl1: string
          AccountSpecificPageUrl2: string
          AccountSpecificPageUrl3: string
          AccountSpecificPageUrl4: string
          AccountSpecificPageUrl5: string
          AccountSpecificPageUrl6: string
          AccountSpecificPageUrl7: string
          AccountSpecificPageUrl8: string
          AccountSpecificPageUrl9: string
          AccountSpecificPageUrl10: string
          RewardFulReferralId: string
          ToltReferralId: string
          TaxIds: []
          TaxStatus: string
          AccountStageLabel: string
          CurrentStripeProducts: string
          CurrentSubscription: {}
          DomainName: string
          HasLoggedIn: false
          LatestSubscription: {}
          LifetimeRevenue: 0
          NextStripeInvoiceDate: string
          Nonce: string
          PrimaryContact: {}
          PrimarySubscription: {}
          PrimaryStripeSubscription: {}
          RecaptchaToken: string
          StripeNextInvoiceSequence: 0
          StripePrice: []
          StripePromotionCode: string
          TaxId: string
          TaxIdIsInvalid: false
          TaxIdType: string
          WebflowSlug: string
        AccountUids: string
        EmailListPerson:
          - Uid: string
            _objectType: string
            Created: string
            Updated: string
            ActivityEventData: {}
            EmailList: {}
            Person: {}
            EmailListSubscriberStatus: 1
            SubscribedDate: string
            ConfirmedDate: string
            ConfirmationNotes: string
            UnsubscribedDate: string
            CleanedDate: string
            WelcomeEmailDeliverDateTime: string
            WelcomeEmailOpenDateTime: string
            UnsubscribeReason: string
            UnsubscribeReasonOther: string
            RecaptchaToken: string
            RecaptchaSiteKey: string
            SendWelcomeEmail: false
            Source: string
        FullName: string
        HasLoggedIn: false
        OAuthIntegrationStatus: 0
        OptInToEmailList: false
        Password: string
        UserAgentPlatformBrowser: string
        HasUnsubscribed: false
        DiscordUser:
          Uid: string
          _objectType: string
          Created: string
          Updated: string
          ActivityEventData: {}
          DiscordUserId: string
          DiscordEmail: string
          DiscordUsername: string
          DiscordOAuthRefreshToken: string
        IsConnectedToDiscord: false
      allOf:
        - $ref: '#/components/schemas/AbstractSchemaLessBean'
        - type: object
          additionalProperties:
            nullable: true
          properties:
            Email:
              type: string
              format: email
              maxLength: 250
              nullable: true
            FirstName:
              type: string
              maxLength: 250
              nullable: true
            LastName:
              type: string
              maxLength: 250
              nullable: true
            MailingAddress:
              nullable: true
              oneOf:
                - $ref: '#/components/schemas/Address'
            PasswordLastUpdated:
              type: string
              format: date-time
              nullable: true
            PasswordMustChange:
              type: boolean
            PhoneMobile:
              type: string
              maxLength: 250
              nullable: true
            PhoneWork:
              type: string
              maxLength: 250
              nullable: true
            ProfileImageS3Url:
              type: string
              maxLength: 250
              nullable: true
            Title:
              type: string
              maxLength: 250
              nullable: true
            Timezone:
              type: string
              maxLength: 100
              nullable: true
            Language:
              type: string
              maxLength: 50
              nullable: true
            IPAddress:
              type: string
              maxLength: 250
              nullable: true
            Referer:
              type: string
              maxLength: 250
              nullable: true
            UserAgent:
              type: string
              maxLength: 1000
              nullable: true
            LastLoginDateTime:
              type: string
              format: date-time
              nullable: true
            OAuthGoogleProfileId:
              type: string
              maxLength: 50
              nullable: true
            PersonAccount:
              type: array
              nullable: true
              items:
                type: object
                title: PersonAccount
                description: Circular reference to PersonAccount (not expanded here).
            DealPeople:
              type: array
              nullable: true
              items:
                $ref: '#/components/schemas/DealPerson'
            LeadFormSubmissions:
              type: array
              nullable: true
              items:
                $ref: '#/components/schemas/LeadFormSubmission'
            Account:
              nullable: true
              oneOf:
                - type: object
                  title: Account
                  description: Circular reference to Account (not expanded here).
            AccountUids:
              type: string
              nullable: true
            EmailListPerson:
              type: array
              nullable: true
              items:
                $ref: '#/components/schemas/EmailListPerson'
            FullName:
              type: string
              nullable: true
            HasLoggedIn:
              type: boolean
            OAuthIntegrationStatus:
              $ref: '#/components/schemas/OAuthService'
            OptInToEmailList:
              type: boolean
            Password:
              type: string
              nullable: true
            UserAgentPlatformBrowser:
              type: string
              nullable: true
            HasUnsubscribed:
              type: boolean
            DiscordUser:
              nullable: true
              oneOf:
                - $ref: '#/components/schemas/DiscordUser'
            IsConnectedToDiscord:
              type: boolean
    AbstractSchemaLessBean:
      allOf:
        - $ref: '#/components/schemas/AbstractQcountBean'
        - type: object
          x-abstract: true
          additionalProperties:
            nullable: true
          properties:
            SchemaLessData:
              type: object
              nullable: true
              additionalProperties: {}
    Address:
      allOf:
        - $ref: '#/components/schemas/AbstractQcountBean'
        - type: object
          additionalProperties: false
          properties:
            AddressLine1:
              type: string
              maxLength: 250
              nullable: true
            AddressLine2:
              type: string
              maxLength: 250
              nullable: true
            AddressLine3:
              type: string
              maxLength: 250
              nullable: true
            City:
              type: string
              maxLength: 250
              nullable: true
            State:
              type: string
              maxLength: 250
              nullable: true
            PostalCode:
              type: string
              maxLength: 250
              nullable: true
            Country:
              type: string
              maxLength: 250
              nullable: true
            GeoLocation:
              type: string
              maxLength: 250
              nullable: true
    DealPerson:
      allOf:
        - $ref: '#/components/schemas/AbstractQcountBean'
        - type: object
          additionalProperties: false
          properties:
            Person:
              nullable: true
              oneOf:
                - type: object
                  title: Person
                  description: Circular reference to Person (not expanded here).
            Deal:
              nullable: true
              oneOf:
                - $ref: '#/components/schemas/Deal'
    LeadFormSubmission:
      allOf:
        - $ref: '#/components/schemas/AbstractQcountBean'
        - type: object
          additionalProperties: false
          required:
            - Person
            - LeadForm
          properties:
            Person:
              type: object
              title: Person
              description: Circular reference to Person (not expanded here).
            LeadForm:
              $ref: '#/components/schemas/LeadForm'
            RefererURL:
              type: string
              nullable: true
            RecaptchaToken:
              type: string
              nullable: true
            RecaptchaSiteKey:
              type: string
              nullable: true
    EmailListPerson:
      example:
        Uid: string
        _objectType: string
        Created: string
        Updated: string
        ActivityEventData: {}
        EmailList:
          Uid: string
          _objectType: string
          Created: string
          Updated: string
          ActivityEventData: {}
          Name: string
          Description: string
          WelcomeSubject: string
          WelcomeBody: string
          WelcomeFromName: string
          WelcomeFromEmail: string
          RequiresDoubleOptIn: false
          IsInternal: false
          EmailListPerson: []
          FieldConfigurationDataJSON: string
          CountSubscriptionsActive: 0
          CountSubscriptionsBounce: 0
          CountSubscriptionsNotConfirmed: 0
          CountSubscriptionsSpam: 0
          CountSubscriptionsUnsubscribed: 0
        Person:
          Uid: string
          _objectType: string
          Created: string
          Updated: string
          ActivityEventData: {}
          SchemaLessData: {}
          Email: string
          FirstName: string
          LastName: string
          MailingAddress: {}
          PasswordLastUpdated: string
          PasswordMustChange: false
          PhoneMobile: string
          PhoneWork: string
          ProfileImageS3Url: string
          Title: string
          Timezone: string
          Language: string
          IPAddress: string
          Referer: string
          UserAgent: string
          LastLoginDateTime: string
          OAuthGoogleProfileId: string
          PersonAccount: []
          DealPeople: []
          LeadFormSubmissions: []
          Account: {}
          AccountUids: string
          EmailListPerson: []
          FullName: string
          HasLoggedIn: false
          OAuthIntegrationStatus: 0
          OptInToEmailList: false
          Password: string
          UserAgentPlatformBrowser: string
          HasUnsubscribed: false
          DiscordUser: {}
          IsConnectedToDiscord: false
        EmailListSubscriberStatus: 1
        SubscribedDate: string
        ConfirmedDate: string
        ConfirmationNotes: string
        UnsubscribedDate: string
        CleanedDate: string
        WelcomeEmailDeliverDateTime: string
        WelcomeEmailOpenDateTime: string
        UnsubscribeReason: string
        UnsubscribeReasonOther: string
        RecaptchaToken: string
        RecaptchaSiteKey: string
        SendWelcomeEmail: false
        Source: string
      allOf:
        - $ref: '#/components/schemas/AbstractQcountBean'
        - type: object
          additionalProperties: false
          properties:
            EmailList:
              nullable: true
              oneOf:
                - $ref: '#/components/schemas/EmailList'
            Person:
              nullable: true
              oneOf:
                - type: object
                  title: Person
                  description: Circular reference to Person (not expanded here).
            EmailListSubscriberStatus:
              maximum: 4
              minimum: 1
              oneOf:
                - $ref: '#/components/schemas/EmailListSubscriberStatus'
            SubscribedDate:
              type: string
              format: date-time
            ConfirmedDate:
              type: string
              format: date-time
              nullable: true
            ConfirmationNotes:
              type: string
              maxLength: 500
              nullable: true
            UnsubscribedDate:
              type: string
              format: date-time
              nullable: true
            CleanedDate:
              type: string
              format: date-time
              nullable: true
            WelcomeEmailDeliverDateTime:
              type: string
              format: date-time
              nullable: true
            WelcomeEmailOpenDateTime:
              type: string
              format: date-time
              nullable: true
            UnsubscribeReason:
              type: string
              maxLength: 20
              nullable: true
            UnsubscribeReasonOther:
              type: string
              nullable: true
            RecaptchaToken:
              type: string
              nullable: true
            RecaptchaSiteKey:
              type: string
              nullable: true
            SendWelcomeEmail:
              type: boolean
            Source:
              type: string
              nullable: true
    OAuthService:
      type: integer
      description: '`0` - None, `1` - Gmail'
      x-enumFlags: true
      x-enumNames:
        - None
        - Gmail
      x-enum-descriptions:
        - ''
        - ''
      enum:
        - 0
        - 1
    DiscordUser:
      allOf:
        - $ref: '#/components/schemas/AbstractQcountBean'
        - type: object
          additionalProperties: false
          required:
            - Person
          properties:
            DiscordUserId:
              type: string
              maxLength: 250
              nullable: true
            DiscordEmail:
              type: string
              maxLength: 250
              nullable: true
            DiscordUsername:
              type: string
              maxLength: 250
              nullable: true
            DiscordOAuthRefreshToken:
              type: string
              nullable: true
    AbstractQcountBean:
      allOf:
        - $ref: '#/components/schemas/AbstractBean'
        - type: object
          additionalProperties: false
          required:
            - Qcount_Id
          properties:
            ActivityEventData:
              nullable: true
    Deal:
      example:
        Uid: string
        _objectType: string
        Created: string
        Updated: string
        ActivityEventData: {}
        SchemaLessData: {}
        Name: string
        Amount: 0
        DueDate: string
        AssignedToPersonClientIdentifier: string
        Weight: 0
        DealPipelineStage:
          Uid: string
          _objectType: string
          Created: string
          Updated: string
          ActivityEventData: {}
          Weight: 0
          Name: string
          DealPipeline: {}
          Deals: []
        Account:
          Uid: string
          _objectType: string
          Created: string
          Updated: string
          ActivityEventData: {}
          SchemaLessData: {}
          StripeId: string
          IsLivemode: false
          Name: string
          ClientIdentifier: string
          Currency: string
          InvoiceNotes: string
          IsDemo: false
          BillingAddress: {}
          MailingAddress: {}
          AccountStage: 2
          PaymentInformation: {}
          PersonAccount: []
          StripeDefaultPaymentMethodId: string
          StripeInvoices: []
          StripePaymentMethods: []
          StripeSubscriptions: []
          Subscriptions: []
          Deals: []
          LastLoginDateTime: string
          AccountSpecificPageUrl1: string
          AccountSpecificPageUrl2: string
          AccountSpecificPageUrl3: string
          AccountSpecificPageUrl4: string
          AccountSpecificPageUrl5: string
          AccountSpecificPageUrl6: string
          AccountSpecificPageUrl7: string
          AccountSpecificPageUrl8: string
          AccountSpecificPageUrl9: string
          AccountSpecificPageUrl10: string
          RewardFulReferralId: string
          ToltReferralId: string
          TaxIds: []
          TaxStatus: string
          AccountStageLabel: string
          CurrentStripeProducts: string
          CurrentSubscription: {}
          DomainName: string
          HasLoggedIn: false
          LatestSubscription: {}
          LifetimeRevenue: 0
          NextStripeInvoiceDate: string
          Nonce: string
          PrimaryContact: {}
          PrimarySubscription: {}
          PrimaryStripeSubscription: {}
          RecaptchaToken: string
          StripeNextInvoiceSequence: 0
          StripePrice: []
          StripePromotionCode: string
          TaxId: string
          TaxIdIsInvalid: false
          TaxIdType: string
          WebflowSlug: string
        DealPeople:
          - Uid: string
            _objectType: string
            Created: string
            Updated: string
            ActivityEventData: {}
            Person: {}
            Deal: {}
        Contacts: string
        AccountId: 0
        Owner:
          Uid: string
          _objectType: string
          Created: string
          Updated: string
          ActivityEventData: {}
          SchemaLessData: {}
          Email: string
          FirstName: string
          LastName: string
          MailingAddress: {}
          PasswordLastUpdated: string
          PasswordMustChange: false
          PhoneMobile: string
          PhoneWork: string
          ProfileImageS3Url: string
          Title: string
          Timezone: string
          Language: string
          IPAddress: string
          Referer: string
          UserAgent: string
          LastLoginDateTime: string
          OAuthGoogleProfileId: string
          PersonAccount: []
          DealPeople: []
          LeadFormSubmissions: []
          Account: {}
          AccountUids: string
          EmailListPerson: []
          FullName: string
          HasLoggedIn: false
          OAuthIntegrationStatus: 0
          OptInToEmailList: false
          Password: string
          UserAgentPlatformBrowser: string
          HasUnsubscribed: false
          DiscordUser: {}
          IsConnectedToDiscord: false
        PipelineUid: string
      allOf:
        - $ref: '#/components/schemas/AbstractSchemaLessBean'
        - type: object
          additionalProperties:
            nullable: true
          required:
            - Name
          properties:
            Name:
              type: string
              maxLength: 250
              minLength: 1
            Amount:
              type: number
              format: decimal
              nullable: true
            DueDate:
              type: string
              format: date-time
              nullable: true
            AssignedToPersonClientIdentifier:
              type: string
              maxLength: 50
              nullable: true
            Weight:
              type: integer
              format: int32
            DealPipelineStage:
              nullable: true
              oneOf:
                - $ref: '#/components/schemas/DealPipelineStage'
            Account:
              nullable: true
              oneOf:
                - type: object
                  title: Account
                  description: Circular reference to Account (not expanded here).
            DealPeople:
              type: array
              nullable: true
              items:
                type: object
                title: DealPerson
                description: Circular reference to DealPerson (not expanded here).
            Contacts:
              type: string
              nullable: true
            AccountId:
              type: integer
              format: int64
            Owner:
              nullable: true
              oneOf:
                - type: object
                  title: Person
                  description: Circular reference to Person (not expanded here).
            PipelineUid:
              type: string
              nullable: true
    LeadForm:
      allOf:
        - $ref: '#/components/schemas/AbstractQcountBean'
        - type: object
          additionalProperties: false
          properties:
            Name:
              type: string
              maxLength: 250
              nullable: true
            FieldConfigurationDataJSON:
              type: string
              nullable: true
            ThankYouRedirectUrl:
              type: string
              format: uri
              maxLength: 1000
              deprecated: true
              x-deprecatedMessage: RedirectUrl stored in FieldConfigurationJSON
              nullable: true
            SubmissionCount:
              type: integer
              format: int32
            PipelineStageUid:
              type: string
              nullable: true
            DealPipelineStage:
              nullable: true
              oneOf:
                - $ref: '#/components/schemas/DealPipelineStage'
    EmailList:
      allOf:
        - $ref: '#/components/schemas/AbstractQcountBean'
        - type: object
          additionalProperties: false
          required:
            - Name
          properties:
            Name:
              type: string
              maxLength: 100
              minLength: 1
            Description:
              type: string
              maxLength: 255
              nullable: true
            WelcomeSubject:
              type: string
              maxLength: 250
              nullable: true
            WelcomeBody:
              type: string
              nullable: true
            WelcomeFromName:
              type: string
              maxLength: 250
              nullable: true
            WelcomeFromEmail:
              title: From Email
              type: string
              maxLength: 250
              nullable: true
            RequiresDoubleOptIn:
              type: boolean
            IsInternal:
              type: boolean
            EmailListPerson:
              type: array
              nullable: true
              items:
                type: object
                title: EmailListPerson
                description: Circular reference to EmailListPerson (not expanded here).
            FieldConfigurationDataJSON:
              type: string
              nullable: true
            CountSubscriptionsActive:
              type: integer
              format: int32
            CountSubscriptionsBounce:
              type: integer
              format: int32
            CountSubscriptionsNotConfirmed:
              type: integer
              format: int32
            CountSubscriptionsSpam:
              type: integer
              format: int32
            CountSubscriptionsUnsubscribed:
              type: integer
              format: int32
    EmailListSubscriberStatus:
      type: integer
      description: '`1` - Subscribed, `2` - Unsubscribed, `3` - Cleaned, `4` - Confirmed'
      x-enumNames:
        - Subscribed
        - Unsubscribed
        - Cleaned
        - Confirmed
      x-enum-descriptions:
        - ''
        - ''
        - ''
        - ''
      enum:
        - 1
        - 2
        - 3
        - 4
    AbstractBean:
      type: object
      x-abstract: true
      additionalProperties: false
      required:
        - Id
        - Created
        - CreatedByUser_Id
        - Updated
        - UpdatedByUser_Id
      properties:
        Uid:
          type: string
          maxLength: 10
          nullable: true
        _objectType:
          type: string
          nullable: true
        Created:
          type: string
          readOnly: true
          format: date-time
          minLength: 1
        Updated:
          type: string
          readOnly: true
          format: date-time
          minLength: 1
    DealPipelineStage:
      allOf:
        - $ref: '#/components/schemas/AbstractQcountBean'
        - type: object
          additionalProperties: false
          properties:
            Weight:
              type: integer
              format: int32
            Name:
              type: string
              maxLength: 250
              nullable: true
            DealPipeline:
              nullable: true
              oneOf:
                - $ref: '#/components/schemas/DealPipeline'
            Deals:
              type: array
              nullable: true
              items:
                type: object
                title: Deal
                description: Circular reference to Deal (not expanded here).
    DealPipeline:
      allOf:
        - $ref: '#/components/schemas/AbstractQcountBean'
        - type: object
          additionalProperties: false
          properties:
            Name:
              type: string
              maxLength: 250
              nullable: true
            DealPipelineStages:
              type: array
              nullable: true
              items:
                type: object
                title: DealPipelineStage
                description: Circular reference to DealPipelineStage (not expanded here).
  securitySchemes:
    Bearer:
      type: http
      description: Enter your access token (OAuth / JWT).
      scheme: bearer
      bearerFormat: JWT
    ApiKey:
      type: apiKey
      description: 'Enter: Outseta {api_key}:{api_secret}'
      name: Authorization
      in: header

````