Victor
Victor

Reputation: 5353

Change verification text using nexmo api?

Is it possible to change the text which is sent to user when using verification api?

I'm talking about this:

$requestId = $nexmo->verify()->start([
    'number' => '...',
    'brand'  => '...',
]);

As I realize there is no way to do it (I checked rest api), or am I mistaken?

Upvotes: 0

Views: 341

Answers (1)

izapz
izapz

Reputation: 86

You can have different Verify templates, however, you will first need to submit a request for the new template and the request will have to be reviewed/approved by the support team.

Please see the following documentation: https://developer.nexmo.com/api/verify/templates

More importantly: https://developer.nexmo.com/api/verify/templates#create-a-custom-template

Upvotes: 4

Related Questions