메인 콘텐츠로 건너뛰기
POST
/
redeem
/
people
cURL
curl --request POST \
  --url https://api.pubrio.com/redeem/people \
  --header 'Content-Type: application/json' \
  --header 'pubrio-api-key: <api-key>' \
  --data '
{
  "people_search_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "people_contact_types": [
    "email-personal",
    "email-work",
    "phone"
  ],
  "profile_id": 123,
  "linkedin_url": "http://www.linkedin.com/in/king-lai-605382b7"
}
'
{
  "data": {
    "profile": {
      "credit": 450376,
      "topup_credit": 235237,
      "total_credit_cost": 45
    },
    "peoples": [
      {
        "people_search_id": "e37ccf38-ea8f-422e-9874-cb23b15e8fe4",
        "emails": [
          {
            "value": "[email protected]",
            "type": "email-personal",
            "status": null
          },
          {
            "value": "[email protected]",
            "type": "email-work",
            "status": "Verified"
          }
        ],
        "phones": [
          {
            "value": "+1123456789",
            "type": "phone",
            "status": null
          }
        ]
      }
    ]
  }
}

Authorizations

pubrio-api-key
string
header
required

API에서 수행하는 작업 및 해당 권한을 식별하는 고유한 API 토큰입니다. 이 토큰은 설정 섹션에서 생성할 수 있습니다.

Body

application/json
people_search_id
string<uuid>
required

인물 조회 작업의 고유 식별자.

people_contact_types
enum<string>[]
required

조회할 연락처 유형을 지정하는 매개변수입니다. 업무용 이메일, 개인 이메일, 전화번호 등 하나 이상을 입력할 수 있습니다.

사용 가능한 옵션:
email-personal,
email-work,
phone
Example:
["email-personal", "email-work", "phone"]
profile_id
integer
required

요청을 수행하는 팀 식별자입니다. 이 ID는 조회 및 사용 크레딧 추적을 위해 특정 팀(작업 공간)과 연계됩니다.

자세한 내용은 팀 탭의 user details 엔드포인트를 참고하세요.

linkedin_url
string

LinkedIn 사용자 프로필의 전체 URL입니다. http로 시작하며 linkedin.com/in/ 또는 linkedin.com/pub/을 포함해야 합니다.

Example:

"http://www.linkedin.com/in/king-lai-605382b7"

Response

관련 세부 정보가 포함된 성공적인 응답입니다.

data
object

응답 정보는 특정 API에 따라 다릅니다.