action circuitsandbox_get_join_details { label: "Gets the conference details of a conversation" description: "Gets the conference details of the given conversation. Conference details include the URL, which is used to join the conference through a web or mobile application, as well as the dial-in phone numbers and conference PIN, which are used to join the conference by phone.\nOauthScopes: READ_CONVERSATIONS" provider: circuitsandbox method: GET path: "/conversations/{convId}/conversationdetails" encoding: json input: { type: "object" properties: { convId: { type: "string" } } required: ["convId"] additionalProperties: false } output: { properties: { bridgeNumbers: { type: "array" description: "A list of bridge numbers which can be used to dial in to the real time session via phone" items: { properties: { bridgeNumber: { type: "string" description: "The number that has to be called to join the real time session of a conversation" } country: { type: "string" description: "The country where the bridge is hosted" } isMostUsed: { type: "boolean" description: "Is most used" } locale: { type: "string" description: "The locale of the bridge" } name: { type: "string" description: "The name / identifier of the bridge" } type: { type: "string" description: "Information of the billing for the call, i.e. if the caller has to pay or not for the call" } } } } convId: { type: "string" description: "missing documentation" } conversationCreatorId: { type: "string" description: "The user ID of the conversation creator" } isModerationAllowed: { type: "boolean" description: "Indicates if the conversation is allowed to be moderated" } isRecordingAllowed: { type: "boolean" description: "Indicates if the conversation is allowed to be recorded" } link: { type: "string" description: "A link that can be used in a browser to join the session" } pin: { type: "string" description: "The PIN to join a real time session via phone" } } } }