ReCORE.co-api

本人確認

本人確認検索

概要

基本情報

query

key 説明 制約など
ids ケースID 整数のみ、カンマ区切りで複数指定可能
statuses ステータス カンマ区切りで複数指定可能
created_at_from 作成日から 2024-04-12 12:08:38 形式
created_at_to 作成日まで 同上
updated_at_from 更新日から 同上
updated_at_to 更新日まで 同上
referable_ids 関連先ID 整数のみ、カンマ区切りで複数指定可能
referable_type 関連先タイプ -
methods 本人確認方法 カンマ区切りで複数指定可能
page ページ 整数のみ、デフォルト:1
limit 1ページあたりの件数 整数のみ、デフォルト:50、最大: 250
cursor ページカーソル -

GET /identifications?statuses=CONFIRMED
[
  {
    "id": 124,
    "method": "EKYC",
    "status": "CONFIRMED",
    "note": null,
    "referable_id": 245,
    "referable_type": "rt_bas",
    "created_at": 1727678325,
    "updated_at": 1727678325,
    "form_url": "https://..."
  }
]
key type 説明
* array<object> 本人確認
*.id int 本人確認ID
*.method string 本人確認方法
*.status string ステータス
*.note string | null メモ
*.referable_id int | null 関連先ID
*.referable_type string | null 関連先タイプ
*.created_at int | null 作成日時
*.updated_at int | null 更新日時
*.form_url string | null お客様操作用URL

本人確認取得

概要

基本情報

GET /identifications/44
本人確認検索のresponse[0]と同様

本人確認作成

概要

基本情報

body

key type 説明 制約など
method string 本人確認方法 -
note ?string | null メモ -
referable_id ?int | null 関連先ID -
referable_type ?string | null 関連先タイプ -

POST /identifications
{
  "method": "EKYC",
  "referable_id": 2,
  "referable_type": "rt_member"
}
本人確認取得と同様

本人確認更新

概要

基本情報

body

本人確認作成との差分のみ記載
key type 説明 制約など
method - (更新不可) -

PUT /identifications/44
{
  "note": "メモ"
}
本人確認取得と同様

本人確認削除

概要

基本情報

DELETE /identifications/44
なし

本人確認コピー

概要

基本情報

body

key type 説明 制約など
src_referable_id int コピー元の関連先ID -
src_referable_type string コピー元の関連先タイプ -
dist_referable_id int コピー先の関連先ID -
dist_referable_type string コピー先の関連先タイプ -
methods ?array<string> コピーする本人確認方法 -

PUT /identifications/44/replicate
{
  "src_referable_id": 11,
  "src_referable_type": "rt_member",
  "dist_referable_id": 44,
  "dist_referable_type": "rt_bad",
  "methods": ["EKYC"]
}
なし