Nitte SDK
  1. 求職者
Nitte SDK
  • API
    • 認証
    • エラー
    • 企業担当者
      • 作成
      • 取得
      • 一覧
      • 更新
      • 削除
    • 求職者
      • 作成
        POST
      • 取得
        GET
      • 一覧
        GET
      • 更新
        PATCH
      • 削除
        DELETE
    • 日程調整
      • 作成
      • 取得
      • 一覧
      • 更新
      • 削除
  • Webhook
    • Webhook
  1. 求職者

作成

POST
https://api.nitte.app/mediatories/{teamId}/candidates
求職者を作成します

Requestパラメータ

Authorization
Headerにパラメータ
Authorization
を追加し、その値にはBearerの後にTokenを連結します
例:
Authorization: Bearer ********************
Pathパラメータ

Request Bodyパラメータapplication/json

例
{
    "email": "nitte@exmaple.com",
    "privateName": "client-12345",
    "publicName": "Nitte株式会社",
    "tel": null,
    "lineUserId": null,
    "blockedPeriods": [
        {
            "start": "2019-08-24T14:15:22Z",
            "end": "2019-08-24T14:15:22Z"
        }
    ],
    "preProposedPeriods": [
        {
            "start": "2019-08-24T14:15:22Z",
            "end": "2019-08-24T14:15:22Z"
        }
    ],
    "id": "string",
    "cc": [
        "string"
    ]
}

リクエストコードサンプル

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.nitte.app/mediatories//candidates' \
--header 'Content-Type: application/json' \
--data-raw '{
    "email": "nitte@exmaple.com",
    "privateName": "client-12345",
    "publicName": "Nitte株式会社",
    "tel": null,
    "lineUserId": null,
    "blockedPeriods": [
        {
            "start": "2019-08-24T14:15:22Z",
            "end": "2019-08-24T14:15:22Z"
        }
    ],
    "preProposedPeriods": [
        {
            "start": "2019-08-24T14:15:22Z",
            "end": "2019-08-24T14:15:22Z"
        }
    ],
    "id": "string",
    "cc": [
        "string"
    ]
}'

Response

🟢200成功
application/json
Body

例
{
    "id": "c1be87a5-d8ff-4338-a60a-ad8792b99ee6",
    "email": "nitte@exmaple.com",
    "publicName": "Nitte株式会社",
    "privateName": "client-12345",
    "tel": "08012341234",
    "lineUserId": "string",
    "blockedPeriods": [
        {
            "start": "2019-08-24T14:15:22Z",
            "end": "2019-08-24T14:15:22Z"
        }
    ],
    "preProposedPeriods": [
        {
            "start": "2019-08-24T14:15:22Z",
            "end": "2019-08-24T14:15:22Z"
        }
    ],
    "cc": [
        "string"
    ]
}
🟠401Unauthorized
🟠404NotFound
🟠422Unprocessable Entity
🔴500InternalServerError
更新日時 2025-08-05 07:40:53
前へ
削除
次へ
取得
Built with