RapidIdentity Product Guides - 2019 Rolling Release

Send Mobile Provision

A REST call to send a mobile provision. A successful response returns the usernumber to which the provisioning link was sent.

POST /restservices/restservice.svc/SetMobileProvision

REQUEST:

    curl
      --request POST
      --url https://<MFAServerHostname>/restservices/restservice.svc/
            SendMobileProvision
      --data '{
        "username":<string>,
        "domainName":<string>,
        "apiKey":<string>
      }'
  

REQUEST BODY:

    {
      "userName":<string>,
      "domainName":<string>,
      "apiKey":<string>
    }
  

RESPONSE 200 OK:

    {
      "status": "success",
      "Result": "6"
    }