openapi: "3.1.0" info: title: "Get agent information" description: "Get agent information using API" version: "v1.0.0" servers: - url: "https://XXXXXXXXX.u.biztel.jp" paths: /public/api/v1/report/agent/call_status: get: description: "選択したコールセンターのエージェントの通話ステータスレポート" operationId: "GetAgentCallStatus" parameters: - name: "from" in: "query" description: "集計の開始日時を指定するyyyy/mm/dd hh:mm または yyyy-mm-dd hh:mm" required: false schema: type: "string" - name: "to" in: "query" description: "集計終了日時を指定するyyyy/mm/dd hh:mm または yyyy-mm-dd hh:mm" required: false schema: type: "string" - name: "queue_ids" in: "query" description: "エージェントステータスを取得するコールセンターのID" required: true schema: type: "string" - name: "account_ids" in: "query" description: "ステータスを取得するエージェントのアカウント ID" required: true schema: type: "string" deprecated: false /public/api/v1/report/agent/datewise: get: description: "日時曜日ごとのエージェント ステータス レポート" operationId: "GetAgentDateTimeData" parameters: - name: "from" in: "query" description: "集計の開始日時を指定するyyyy/mm/dd hh:mm または yyyy-mm-dd hh:mm" required: false schema: type: "string" - name: "to" in: "query" description: "集計終了日時を指定するyyyy/mm/dd hh:mm または yyyy-mm-dd hh:mm" required: false schema: type: "string" - name: "queue_ids" in: "query" description: "エージェントステータスを取得するコールセンターのID" required: false schema: type: "string" - name: "account_ids" in: "query" description: "ステータスを取得するエージェントのアカウント ID" required: false schema: type: "string" deprecated: false components: schemas: {}