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

> Retrieve a past participant's profile along with their engagement history across your organization's projects.

# Retrieve past participant profile



## OpenAPI

````yaml get /v1/team-respondents/profiles/{profileId}
openapi: 3.0.0
info:
  title: Partner API
  description: Public API for partner integrations
  version: '1.0'
  contact: {}
servers:
  - url: https://api-staging.respondent.io
security: []
tags: []
paths:
  /v1/team-respondents/profiles/{profileId}:
    get:
      tags:
        - team-respondents
      summary: Retrieve past participant profile
      description: |-
        Find a past participant by profile Id
        Requires organization feature: participant database.
      operationId: TeamRespondentsController_findOne
      parameters:
        - name: profileId
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TeamRespondent'
components:
  schemas:
    TeamRespondent:
      type: object
      properties:
        profileId:
          type: string
          format: ObjectId
        userId:
          type: string
          format: ObjectId
        firstName:
          type: string
        lastInitial:
          type: string
        jobTitle:
          type: string
        linkedinUrl:
          type: string
        skills:
          default: []
          type: array
          items:
            $ref: '#/components/schemas/SimpleSkill'
        company:
          type: string
        companySize:
          $ref: '#/components/schemas/CompanySize'
        location:
          type: array
          items:
            $ref: '#/components/schemas/ProfileLocation'
        gender:
          $ref: '#/components/schemas/Gender'
        educationLevel:
          $ref: '#/components/schemas/EducationLevel'
        ethnicity:
          $ref: '#/components/schemas/Ethnicities'
        householdIncome:
          $ref: '#/components/schemas/HouseholdIncome'
        industry:
          type: array
          items:
            type: string
        seniorityLevel:
          $ref: '#/components/schemas/SeniorityLevel'
        source:
          $ref: '#/components/schemas/ParticipantSource'
        lastPaidAt:
          type: string
        socialLinks:
          type: object
      required:
        - profileId
        - userId
        - firstName
        - lastInitial
        - skills
        - companySize
        - location
    SimpleSkill:
      type: object
      properties:
        id:
          type: string
          format: ObjectId
        name:
          type: string
        slug:
          type: string
        validated:
          type: boolean
          default: false
        type:
          type: string
          default: skill
      required:
        - id
        - name
        - slug
        - validated
        - type
    CompanySize:
      type: string
      enum:
        - selfemployed
        - 1-10
        - 11-50
        - 51-200
        - 201-500
        - 501-1000
        - 1001-5000
        - 5001-10000
        - 10000+
        - all
    ProfileLocation:
      type: object
      properties:
        city:
          $ref: '#/components/schemas/ProfileLocationCity'
        zipcode:
          type: string
          default: null
        state:
          type: string
        loc:
          $ref: '#/components/schemas/ProfileLocationLoc'
      required:
        - city
        - loc
    Gender:
      type: string
      enum:
        - male
        - female
        - other
        - nonbinary
        - transmale
        - transfemale
        - prefernottoanswer
        - N/A
    EducationLevel:
      type: string
      enum:
        - somehighschool
        - highschoolgraduate
        - somecollegenodegree
        - tradetechnicalvocationaltraining
        - associatedegree
        - bachelordegree
        - masterdegree
        - doctoratedegree
        - N/A
    Ethnicities:
      type: string
      enum:
        - americanindianalaskannative
        - hispaniclatino
        - blackorafricanamerican
        - asianpacificislander
        - whitecaucasian
        - middleeastern
        - multipleethnicity
        - prefernotdisclose
        - N/A
    HouseholdIncome:
      type: string
      enum:
        - <30000
        - 30000-39999
        - 40000-59999
        - 60000-79999
        - 80000-99999
        - 100000-149999
        - 150000-199999
        - 200000+
        - all
        - all
    SeniorityLevel:
      type: string
      enum:
        - unpaid
        - student
        - training
        - entrylevel
        - senior
        - manager
        - director
        - chiefofficer
        - partner
        - vicepresident
    ParticipantSource:
      type: string
      enum:
        - marketplace
        - recruited
        - invited
    ProfileLocationCity:
      type: object
      properties:
        id:
          type: string
        country:
          $ref: '#/components/schemas/CountryCode'
        city:
          type: string
        state:
          type: string
        formattedAddress:
          type: string
        administrative_area_level_1:
          type: string
        postal_code:
          type: string
        locality:
          type: string
        location:
          $ref: '#/components/schemas/ProfileLocationCityLocation'
        zip:
          type: string
          nullable: true
      required:
        - id
        - country
        - city
        - formattedAddress
        - location
    ProfileLocationLoc:
      type: object
      properties:
        type:
          type: string
        coordinates:
          type: array
          items:
            type: number
      required:
        - type
        - coordinates
    CountryCode:
      type: string
      enum:
        - AF
        - AX
        - AL
        - DZ
        - AS
        - AD
        - AO
        - AI
        - AQ
        - AG
        - AR
        - AM
        - AW
        - AU
        - AT
        - AZ
        - BS
        - BH
        - BD
        - BB
        - BY
        - BE
        - BZ
        - BJ
        - BM
        - BT
        - BO
        - BA
        - BW
        - BV
        - BR
        - VG
        - IO
        - BN
        - BG
        - BF
        - BI
        - CV
        - KH
        - CM
        - CA
        - KY
        - CF
        - TD
        - CL
        - CN
        - CX
        - CC
        - CO
        - KM
        - CG
        - CK
        - CR
        - HR
        - CU
        - CW
        - CY
        - CZ
        - CI
        - CD
        - DK
        - DJ
        - DM
        - DO
        - EC
        - EG
        - SV
        - GQ
        - ER
        - EE
        - SZ
        - ET
        - FK
        - FO
        - FJ
        - FI
        - FR
        - GF
        - PF
        - TF
        - GA
        - GM
        - GE
        - DE
        - GH
        - GI
        - GR
        - GL
        - GD
        - GP
        - GU
        - GT
        - GG
        - GN
        - GW
        - GY
        - HT
        - HM
        - VA
        - HN
        - HK
        - HU
        - IS
        - IN
        - ID
        - IR
        - IQ
        - IE
        - IM
        - IL
        - IT
        - JM
        - JP
        - JE
        - JO
        - KZ
        - KE
        - KI
        - KW
        - KG
        - LA
        - LV
        - LB
        - LS
        - LR
        - LY
        - LI
        - LT
        - LU
        - MO
        - MG
        - MW
        - MY
        - MV
        - ML
        - MT
        - MH
        - MQ
        - MR
        - MU
        - YT
        - MX
        - FM
        - MD
        - MC
        - MN
        - ME
        - MS
        - MA
        - MZ
        - NA
        - NR
        - NP
        - NL
        - NC
        - NZ
        - NI
        - NE
        - NG
        - NU
        - NF
        - KP
        - MK
        - MP
        - 'NO'
        - OM
        - PK
        - PW
        - PS
        - PA
        - PG
        - PY
        - PE
        - PH
        - PN
        - PL
        - PT
        - PR
        - QA
        - RO
        - RW
        - RE
        - SH
        - KN
        - LC
        - PM
        - VC
        - WS
        - SM
        - ST
        - SA
        - SN
        - RS
        - SC
        - SL
        - SG
        - SK
        - SI
        - SB
        - SO
        - ZA
        - GS
        - KR
        - ES
        - LK
        - SD
        - SR
        - SJ
        - SE
        - CH
        - TJ
        - TZ
        - TH
        - TL
        - TG
        - TK
        - TO
        - TT
        - TN
        - TM
        - TC
        - TV
        - TR
        - VI
        - UG
        - UA
        - AE
        - GB
        - UM
        - US
        - UY
        - UZ
        - VU
        - VE
        - VN
        - WF
        - EH
        - YE
        - ZM
        - ZW
        - all
    ProfileLocationCityLocation:
      type: object
      properties:
        latitude:
          type: number
        longitude:
          type: number
      required:
        - latitude
        - longitude

````