{ "opencollection": "1.0.0", "info": { "name": "Auth0 Authentication actions jobs API", "version": "1.0.0" }, "items": [ { "info": { "name": "jobs", "type": "folder" }, "items": [ { "info": { "name": "Create Export Users Job", "type": "http" }, "http": { "method": "POST", "url": "{auth0_domain}/jobs/users-exports", "body": { "type": "json", "data": "{}" } }, "docs": "Export all users to a file via a long-running job." }, { "info": { "name": "Create Import Users Job", "type": "http" }, "http": { "method": "POST", "url": "{auth0_domain}/jobs/users-imports", "body": { "type": "multipart-form", "data": [] } }, "docs": "Import users from a formatted file into a connection via a long-running job. When importing users, with or without upsert, the `email_verified` is set to `false` when the email address is added or updated. Users must verify their email address. To avoid this behavior, set `email_verified` to `true` in the imported data." }, { "info": { "name": "Send an Email Address Verification Email", "type": "http" }, "http": { "method": "POST", "url": "{auth0_domain}/jobs/verification-email", "body": { "type": "json", "data": "{}" } }, "docs": "Send an email to the specified user that asks them to click a link to verify their email address.\n\nNote: You must have the `Status` toggle enabled for the verification email template for the email to be sent." }, { "info": { "name": "Get a Job", "type": "http" }, "http": { "method": "GET", "url": "{auth0_domain}/jobs/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "ID of the job." } ] }, "docs": "Retrieves a job. Useful to check its status." }, { "info": { "name": "Get Job Error Details", "type": "http" }, "http": { "method": "GET", "url": "{auth0_domain}/jobs/:id/errors", "params": [ { "name": "id", "value": "", "type": "path", "description": "ID of the job." } ] }, "docs": "Retrieve error details of a failed job." } ] } ], "bundled": true }