utilized from for flow id * @param string $to * @param string $message * @return void */ public function send(string $from, string $to, string $message): void { $to = ltrim($to, '+'); $this->request( method: 'POST', url: $this->endpoint, payload: json_encode([ 'sender' => $this->user, 'otp' => $message, 'flow_id' => $from, 'mobiles' => $to ]), headers: [ "content-type: application/JSON", "authkey: {$this->secret}", ] ); } }