Management API
Go
package example import ( client "github.com/auth0/go-auth0/management/client" option "github.com/auth0/go-auth0/management/option" context "context" ) func do() () { client := client.NewClient( option.WithToken( "<token>", ), ) client.Jobs.Errors.Get( context.TODO(), "id", ) }
[ { "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
このページは役に立ちましたか?