Hi,
I am testing some scenarios with UUI data. I am running into a use case that I wanted some guidance on.. I am placing an outbound call as a businses user and would like to add UUI data on this outbound call programatically. I noticed that the API to add UUI data to the call is the following, with a specific Communication ID..
PUT /api/v2/conversations/calls/{conversationId}/participants/{participantsId}/communications/{communicationId}/uuidata
However, when I'm looking at the call structure for an outbound business user call.. I don't see any call Segments, there for I have no .
{
"entities": [
{
"id": "756f8d64-e205-4d32-a895-7f3db2138349",
"participants": [
{
"id": "e2246c9c-88fa-43f7-81d6-9b1b0462d06e",
"address": "sip:6011c58d3ad3b31c4ef826a7+xxxxx.orgspan.com@localhost",
"startTime": "2022-08-11T14:10:53.775Z",
"connectedTime": "2022-08-11T14:10:58.213Z",
"purpose": "user",
"state": "connected",
"direction": "outbound",
"held": false,
"wrapupRequired": false,
"user": {
"id": "db85e45b-bfff-400e-9f4b-92e868654391",
"selfUri": "/api/v2/users/db85e45b-bfff-400e-9f4b-92e868654391"
},
"attributes": {},
"provider": "Edge",
"muted": true,
"confined": false,
"recording": false,
"recordingState": "none",
"ani": "sip:6011c58d3ad3b31c4ef826a7+xxxxx.orgspan.com@localhost",
"dnis": "tel:+1952210xxxx"
},
{
"id": "e47c001f-58bd-425f-a962-0d9d3bde7faf",
"name": "Twin Cities MN",
"address": "tel:+1952210xxxx",
"startTime": "2022-08-11T14:10:54.778Z",
"connectedTime": "2022-08-11T14:10:58.210Z",
"purpose": "external",
"state": "connected",
"direction": "outbound",
"held": false,
"wrapupRequired": false,
"attributes": {},
"provider": "Edge",
"externalContact": {
"id": "7bce3de3-f152-4f49-9bb8-870abd75378b",
"selfUri": "/api/v2/externalcontacts/contacts/7bce3de3-f152-4f49-9bb8-870abd75378b"
},
"externalOrganization": {
"id": "b4d3697d-988b-4c3c-8e7d-1ac3cee9b549",
"selfUri": "/api/v2/externalcontacts/organizations/b4d3697d-988b-4c3c-8e7d-1ac3cee9b549"
},
"peer": "58d50130-ac25-4d28-a33a-21b9f1cdff29",
"muted": false,
"confined": false,
"recording": true,
"recordingState": "active",
"ani": "sip:3120@10.87.4.134;user=phone",
"dnis": "tel:+1952210xxxx"
}
],
"otherMediaUris": [],
"recordingState": "active",
"selfUri": "/api/v2/conversations/calls/756f8d64-e205-4d32-a895-7f3db2138349"
}
],
"pageSize": 1,
"pageNumber": 1,
"total": 1,
"firstUri": "/api/v2/conversations/calls?pageSize=1&pageNumber=1",
"selfUri": "/api/v2/conversations/calls?pageSize=1&pageNumber=1",
"lastUri": "/api/v2/conversations/calls?pageSize=1&pageNumber=1",
"pageCount": 1
}
Is it possible to add UUI data to a business user call? If so, what should be the Communication
ID?