Hi all!
I want to open a new tab according to the phone number on the card, however, I need the phone number to be in the body of the request and not in the URL
I need something like this:
--header 'Content-Type: application/json' \
--data-raw '{"dialer":{
"dials": [{
"attendant_email": "test@test.com",
"extension_number": 101,
"customer_info": "Test",
"client": {
"phones": [{
"name":"Name in Card",
"number": "Phone in Card",
"type": "2"}]}}]},
"token": "fix token"}'
Can i do this in button with openURL?