Management API
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>" } ] } ]
Retrieve error details of a failed job.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
ID of the job.
^job_[A-Za-z0-9]{16}$
Job successfully retrieved.
User, as provided in the import file
Errors importing the user.
Show child attributes