User.confirm_signup - REST API

Lets users confirm their intent to sign up with the SSO system. On input, a confirmation token must be sent.

  • HTTP method: PATCH
  • URL path: /zato/sso/user/signup/confirm

Request

NameDatatypeOptionalNotes
confirm_tokenstring---Confirmation token previously obtained during signup
current_appstring---Name of the application the user is calling the API from

Response

NameDatatypeOptionalNotes
cidstring---Correlation ID assigned to request
statusstring---Overall status code
sub_statuslistYesReturned only if status is not "ok", a list of error or warning codes

Usage

$ curl -XPOST "localhost:17010/zato/sso/user/signup/confirm" -d '
{
  "confirm_token":"3x1gr0uXmM95wW7QsWuq7-VmPU1ueXLn",
  "current_app":"CRM"
}'


{
  "cid": "259529171ff77ce4c8b26e11",
  "status": "ok"
}