HTTPS authorization for sending sms

Hello, i need to do https authorization in my API to authorize name and password, how can i do it? I put it into header for now:


Thanks for help.

@vilden that's right, the header is usually where you'll want to put this information. For security purposes, I'd highly recommend creating a REST API resource, adding your basic auth information there, and then querying that resource. That way your secrets get encrypted and stored securely on our servers, instead of going straight through the frontend.