Use the /register endpoint in combination with a POST request to allow an applicant to register an useraccount.

Request with tokens

By sending the following POST-request, an applicant can register an useraccount:

with TOKEN eihter being a client access token or a user access token. It is used to determine the validity of this request. Furthermore the body of the POST message has to contain a JSON-encoded ApplicantData-object. In the curl command from above it can bee seen in the -d parameter.

Request with basic authorization

As an alternative, you can use here the basic authorization method. Just write

{clientId} is the ID for your application to develop given to you by softgarden. The colon seen in the example is obligatory.

Path parameters

– none –

Query parameters

– none –

Response values

Upon Returned value Description
failure 500 – INTERNAL SERVER ERROR When an error appears while processing your request.
authorization error 401 / 403 See here for details.

You won’t get any feedback if your request succeeds.

Comments

Comments are closed.