oriacall/sdk
Composer 安装命令:
composer require oriacall/sdk
包简介
PHP SDK for the Oriacall Developer API.
README 文档
README
PHP SDK for the Oriacall Developer API.
Install
composer require oriacall/sdk
Requirements:
- PHP 8.2 or newer.
- PHP
curlandjsonextensions. - An Oriacall Developer API client ID and secret.
- Server-side usage only. Do not expose
clientSecretin browser code.
Quickstart
use Oriacall\Oriacall; $oriacall = Oriacall::client([ 'clientId' => getenv('ORIACALL_CLIENT_ID'), 'clientSecret' => getenv('ORIACALL_CLIENT_SECRET'), 'scope' => ['hello:read', 'objectives:read', 'calls:read'], ]); $hello = $oriacall->hello->get(); echo $hello->data['message'].' '.$hello->requestId.PHP_EOL; $calls = $oriacall->calls->list(['limit' => 50]); print_r($calls->data['data']);
The SDK requests and caches a short-lived access token using client credentials, then sends it as a bearer token for API calls.
Client Options
$oriacall = Oriacall::client([ 'baseUrl' => 'https://api.oriacall.com', 'clientId' => getenv('ORIACALL_CLIENT_ID'), 'clientSecret' => getenv('ORIACALL_CLIENT_SECRET'), 'scope' => ['calls:read'], 'retries' => 2, 'retryBaseDelayMs' => 250, 'retryMaxDelayMs' => 2000, 'timeoutSeconds' => 30, 'onResponse' => function (array $event): void { error_log(json_encode($event)); }, ]);
Options:
| Option | Type | Required | Description |
|---|---|---|---|
clientId |
string |
Yes | Developer API client ID. |
clientSecret |
string |
Yes | Developer API client secret. Keep this server-side. |
baseUrl |
string |
No | API base URL. Defaults to https://api.oriacall.com. |
scope |
`string | array | null` |
onResponse |
`callable | null` | No |
retries |
int |
No | Retry count for token requests and GET endpoints. Defaults to 0. |
retryBaseDelayMs |
int |
No | Initial retry delay. Defaults to 250. |
retryMaxDelayMs |
int |
No | Maximum retry delay. Defaults to 2000. |
timeoutSeconds |
int |
No | cURL timeout. Defaults to 30. |
Response Envelope
Every endpoint method returns Oriacall\ApiResponse:
$response->data; // decoded JSON array, or null for delete responses $response->status; // HTTP status code $response->requestId; // X-Request-Id when provided
Methods
$oriacall->getAccessToken(); $oriacall->raw('GET', '/v1/hello'); $oriacall->hello->get(); $oriacall->objectives->list(['limit' => 50]); $oriacall->objectives->update('objective-id', ['customFields' => ['region' => 'north']]); $oriacall->objectives->paginate(['limit' => 50]); $oriacall->objectiveCustomFields->list(); $oriacall->objectiveCustomFields->create(['key' => 'region', 'label' => 'Region', 'type' => 'text']); $oriacall->objectiveCustomFields->update('region', ['label' => 'Sales Region']); $oriacall->agents->list(['objectiveId' => 'objective-id']); $oriacall->agents->paginate(['limit' => 50]); $oriacall->calls->list(['limit' => 50, 'sortBy' => 'recordedAt']); $oriacall->calls->get('call-id'); $oriacall->calls->upload([...]); $oriacall->calls->queueAnalysis('call-id'); $oriacall->calls->waitForAnalysis('call-id', ['timeoutMs' => 120000]); $oriacall->calls->paginate(['limit' => 50]); $oriacall->leads->list(['customFields' => ['crm_stage' => 'qualified']]); $oriacall->leads->get('lead-id'); $oriacall->leads->update('lead-id', ['customFields' => ['crm_stage' => 'won']]); $oriacall->leads->upsertByExternalId('crm-lead-id', ['firstName' => 'Ada', 'lastName' => 'Lovelace']); $oriacall->leads->paginate(['limit' => 50]); $oriacall->leadCustomFields->list(); $oriacall->leadCustomFields->create(['key' => 'crm_stage', 'label' => 'CRM Stage', 'type' => 'text']); $oriacall->leadCustomFields->update('crm_stage', ['label' => 'CRM Stage']); $oriacall->webhooks->endpoints->list(); $oriacall->webhooks->endpoints->create(['url' => 'https://example.com/oriacall/webhooks', 'events' => ['analysis.completed']]); $oriacall->webhooks->endpoints->update('endpoint-id', ['isActive' => false]); $oriacall->webhooks->endpoints->rotateSecret('endpoint-id'); $oriacall->webhooks->endpoints->test('endpoint-id'); $oriacall->webhooks->endpoints->delete('endpoint-id'); $oriacall->webhooks->endpoints->paginate(['limit' => 50]);
$oriacall->calls->get('call-id') includes transcript data when available. Transcript turn speaker values can be agent, client, or system. system represents telephony infrastructure such as voicemail greetings, carrier messages, transfer prompts, or tones; it is not a human participant.
Upload A Call
$response = $oriacall->calls->upload([ 'idempotencyKey' => 'crm-call-123', 'externalId' => 'crm-call-123', 'recordedAt' => '2026-06-10T14:30:00Z', // Optional hint. Oriacall may override it during audio analysis. 'objectiveId' => 'objective-id', 'queueAnalysis' => true, 'agent' => [ 'externalId' => 'agent-1', 'name' => 'Morgan Agent', 'email' => 'morgan@example.com', ], 'lead' => [ 'externalId' => 'lead-1', 'firstName' => 'Ada', 'lastName' => 'Lovelace', 'phone' => '+15555550100', 'customFields' => [ 'crm_stage' => 'qualified', ], ], 'audio' => [ 'path' => storage_path('app/calls/call.mp3'), 'filename' => 'call.mp3', 'contentType' => 'audio/mpeg', ], ]); echo $response->data['data']['id']; echo $response->data['data']['recordedAt'];
To upload in-memory audio, use contents instead of path:
'audio' => [ 'contents' => $audioBytes, 'filename' => 'call.mp3', 'contentType' => 'audio/mpeg', ]
Required scope: calls:write.
objectiveId is optional. When provided, Oriacall associates the call with that organization objective. When omitted, Oriacall associates the call with an existing objective in the organization.
Call summaries include callResult, callResultLabel, and callQualityScore. analysisStatus is one of pending, queued, processing, completed, or failed. queueStatus is queued, processing, completed, failed, or null when analysis has not been queued. analysisStage is audio_pass, text_pass, publishing, completed, or null when analysis has not been queued. Internal dead-letter and cancelled runs are exposed as failed. Completed call analysis includes summary, callStrengths, callWeaknesses, callObservations, objections, and alerts.
Pagination
List endpoints use cursor pagination.
$firstPage = $oriacall->calls->list(['limit' => 50]); if ($cursor = $firstPage->data['pagination']['nextCursor']) { $secondPage = $oriacall->calls->list(['limit' => 50, 'cursor' => $cursor]); } foreach ($oriacall->calls->paginate(['limit' => 50]) as $call) { echo $call['id'].PHP_EOL; }
Pagination helpers are available for objectives, agents, calls, leads, and webhooks->endpoints.
Custom Field Filters
Use SDK option names that match the TypeScript SDK. The PHP SDK maps them to the public API query parameters:
$oriacall->objectives->list([ 'objectiveCustomFields' => [ 'region' => 'north', 'priority' => ['gte' => 5], ], ]); $oriacall->calls->list([ 'recordedAfter' => '2026-01-01T00:00:00Z', 'recordedBefore' => '2026-02-01T00:00:00Z', 'sortBy' => 'recordedAt', 'leadCustomFields' => [ 'crm_stage' => 'qualified', ], ]); $oriacall->leads->list([ 'customFields' => [ 'crm_stage' => 'qualified', ], ]);
For calls, createdAfter and createdBefore filter by Oriacall upload/record creation time. Use recordedAfter, recordedBefore, and sortBy => recordedAt for original call chronology. The recorded-time filters and sort fall back to createdAt when recordedAt is null.
Errors
Failed API calls throw Oriacall\ApiError:
use Oriacall\ApiError; try { $oriacall->calls->get('call-id'); } catch (ApiError $error) { logger()->error('Oriacall failed', [ 'status' => $error->status, 'code' => $error->errorCode, 'message' => $error->getMessage(), 'request_id' => $error->requestId, 'details' => $error->details, 'retry_after' => $error->retryAfter, ]); }
Webhook Signature Verification
use Oriacall\Oriacall; $valid = Oriacall::verifyWebhookSignature( body: $request->getContent(), secret: config('services.oriacall.webhook_secret'), signature: $request->header('Oriacall-Signature'), timestamp: $request->header('Oriacall-Timestamp'), );
Scopes
Available scopes:
hello:read
objectives:read
objectives:write
objective_custom_fields:manage
agents:read
calls:read
calls:write
leads:read
leads:write
lead_custom_fields:manage
webhooks:read
webhooks:write
The token request can only request scopes that were granted to that API client.
oriacall/sdk 适用场景与选型建议
oriacall/sdk 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 41 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 06 月 03 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「api」 「sdk」 「laravel」 「oriacall」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 oriacall/sdk 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 oriacall/sdk 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 oriacall/sdk 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A PSR-7 compatible library for making CRUD API endpoints
Alfabank REST API integration
Zero-dependency raw PHP DNS resolver, domain-ownership verification, and intoDNS/MxToolbox-style diagnostics. Queries authoritative nameservers directly over sockets — never trusts the recursive cache for ownership checks.
A lightweight plain-PHP framework for database-backed CRUD APIs.
bughq error tracking - PHP SDK
ABsurge PHP SDK for feature flags and A/B testing
统计信息
- 总下载量: 41
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 30
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-06-03