Hello everyone,
This is my first post, I am new to API. I am working on a powerapp to pull call queue members status if they are logged in or not in a call queue. I have setup custom connector and test is giving me a result below:
{
 "records": [
  {
   "member": {
    "id": "123456789",
    "name": "Mr Xyz",
    "extensionNumber": "5000"
   },
   "acceptQueueCalls": true
  },
in custom data connector settings Definition->Response I use below information in Headers and body area:
Headers
[
 {
  "name": "Content-Type",
  "value": "application/json"
 }
]
     ------- Body ----
{
 "activeMembers": [
  {
   "id": "12345678",
   "extensionNumber": "1801",
   "name": "John Doe",
   "presenceStatus": "Available",
   "dndStatus": "TakeAllCalls",
   "telephonyStatus": "Ringing",
   "userType": "User",
   "lastActive": "2023-11-01T12:34:56Z"
  }
 ],
 "totalActiveMembers": 1
}
Â
in my power app when i insert the gallery and bind it to data connector, I am not getting any results.
I would really appreciate if someone help me.
Regards,
Aley