eID

POST /eid/complete

Provide the remaining lockable fields and the verification data (legal address).

Help us improve

Did you spot an error? Or maybe you just have a suggestion for how we can improve? Leave us a comment.

Request

POST /api/2/eid/complete

userId

required

signicatUniqueId

required

Signicat BankID

verifiedFields

required

Valid JSON containing the verified fields you would like to store

hash

required

A verified request hash signed with your client sign secret.

initRef

required

The initRef returned from the eID init call

Example request

curl
curl https://login.schibsted.com/api/2/eid/complete \
   -X POST \
   -d "userId=42" \
   -d "signicatUniqueId=123456789" \
   -d "verifiedFields={}" \
   -d "hash=7374163eed7a0e88f9bf28e128d8da82" \
   -d "initRef=7374163eed7a0e88f9bf28e128d8da82"

Response

This endpoint supports the JSON response format.

Success: 200 OK

Returns a verification level and verified data of user

Eiduser

Failure cases

Some HTTP response codes are used for multiple error situations. There is no consistent way to tell these apart, but the error object will contain a textual explanation of the reason for the error. For explanation on OAuth related failures and errors see OAuth authentication failures.

  • 400 Bad Request ssn is required
  • 400 Bad Request userId is required
  • 400 Bad Request verifiedFields is required
  • 400 Bad Request eID not valid
  • 400 Bad Request eID not initialized
  • 400 Bad Request Failed to create eID
  • 400 Bad Request User changed since init
  • 401 Unauthorized You don't have administration rights for this client.
  • 401 Unauthorized Your client doesn't have administration rights for this client.
  • 403 Forbidden Client is not authorized to access this API endpoint. Contact Schibsted account to request access.
  • 403 Forbidden Requesting IP is not whitelisted
  • 403 Forbidden Invalid verification hash
  • 403 Forbidden Token is not authorized to access this user
  • 404 Not Found Unknown client ID
  • 404 Not Found Client ID mismatch. The client making the request is no the owner of this resource, and does not have administrative privileges for it.
  • 420 Request Ratelimit exceeded

Sample response

JSON
{}
JSON-P
callback({});

Comments/feedback

Do you have questions, or just want to contribute some newly gained insight? Want to share an example? Please leave a comment. Our team reads and responds to every question. Additionally, your experience can help others using Schibsted account, and it can help us continuously improve our documentation.