---
title: "SsnResponse"
url: "https://developer-staging.agentsync.io/apis/identity/versions/1ed33a2c-924a-434c-9643-fbc531dea1b8/schemas/SsnResponse"
---

> Full API specification: https://developer-staging.agentsync.io/apis/identity/versions/1ed33a2c-924a-434c-9643-fbc531dea1b8.md

# SsnResponse

Carries a person's full, unmasked Social Security Number. Returned only by GET /v2/persons/{personId}/ssn; the SSN is masked in all other responses.

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Identity API
  version: v1.275.8
servers:
  - url: https://api.sandbox.agentsync.io/id
    description: Sandbox server
  - url: https://api.agentsync.io/id
    description: Production server
components:
  schemas:
    SsnResponse:
      title: SsnResponse
      description: >
        Carries a person's full, unmasked Social Security Number. Returned only
        by GET /v2/persons/{personId}/ssn; the SSN is masked in all other
        responses.
      type: object
      required:
        - personId
        - ssn
      properties:
        personId:
          type: string
          format: uuid
          description: The unique identifier of the person.
          readOnly: true
          example: 550e8400-e29b-41d4-a716-446655440000
        ssn:
          type: string
          description: The full, unmasked Social Security Number (9 digits).
          readOnly: true
          example: "123456789"
```
