メインコンテンツへスキップ
GET
/
jobs
/
{id}
/
errors
TypeScript
import { ManagementClient } from "auth0";

async function main() {
    const client = new ManagementClient({
        token: "<token>",
    });
    await client.jobs.errors.get("id");
}
main();
[
  {
    "user": {},
    "errors": [
      {
        "code": "<string>",
        "message": "<string>",
        "path": "<string>"
      }
    ]
  }
]

承認

Authorization
string
header
必須

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

パスパラメータ

id
string
必須

ID of the job.

Pattern: ^job_[A-Za-z0-9]{16}$

レスポンス

Job successfully retrieved.

user
object

User, as provided in the import file

errors
object[]

Errors importing the user.