Hi All,
I am using Send and http request to create a new item in list. I am using below code and it is working fine. In below code in hperlink column url section there is no any special character like any parameter with ? and &.
Working Code:
{
"KpiDescription": "wow testing",
"Title_hyperlink":
{
"Description": "Evaluatie",
"Url": "https://apps.powerapps.com/play/e/3c65431a-df0e-ef03-b1f4-5633b914bf5b/a/4e400f97-4331-42ff-ae7e-c171b3fc06ab?tenantId=6953aea1-40b0-4937-ade7-746a6e059870&hint=a649103c-db8f-4c74-8c39-f00373328f1b&sourcetime=1739088980439&source=portal"
}
}
In below code I am using some parameter to get in power apps. With this parameters at last ?FormName=Release_Swa_Tasks&ID=24756&TaskID=7. It is getting stuck and after long time it is giving Bad Request errors.
Not Working Code:
{
"KpiDescription": "wow testing",
"Title_hyperlink":
{
"Description": "Evaluatie",
"Url": "https://apps.powerapps.com/play/e/3c65431a-df0e-ef03-b1f4-5633b914bf5b/a/4e400f97-4331-42ff-ae7e-c171b3fc06ab?tenantId=6953aea1-40b0-4937-ade7-746a6e059870&hint=a649103c-db8f-4c74-8c39-f00373328f1b&sourcetime=1739088980439&source=portal?FormName=Release_Swa_Tasks&ID=24756&TaskID=7"
}
}
Is there any way how to send http request with ? and & in urls like "?FormName=Release_Swa_Tasks&ID=24756&TaskID=7".