hey all thank u u helped me a lot. Now i´m facing new problems.
So maybe u can help me to solve this in a direct way.
My process includes already an api integration.
First of all. I recieve SMS from my online provider after that I have to proceed an HTML request to activate that SMS Message. It looks like this:
In my first steps i request my phonenumber and the SMS Code. SMS Code gets provided BUT i have to activate the SMS with the mentioned API call. So that is my main Issue that I have to confirm the activation of the sms.
I recieve my data like this:
“activationId”: “1627718633”,
“serviceCode”: “ot”,
“phoneNumber”: “37066834594”,
“activationCost”: “15.00”,
“activationStatus”: “4”,
“smsCode”: null,
“smsText”: null,
“activationTime”: “2023-08-01 00:16:20”,
“discount”: “0”,
“repeated”: “0”,
“countryCode”: “44”,
“countryName”: “Lithuania”,
“canGetAnotherSms”: “1”
So my question is how can i automatically use the “activationId”: “1627718633” in my following api call (note of course the activation ID changes every task):
I need to source the activation code from mentioned above in api just mentioned as „I’d“ and unique identifier.
I relly appreciate ur help a lot.