-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcapability-example.json
More file actions
38 lines (38 loc) · 1.02 KB
/
Copy pathcapability-example.json
File metadata and controls
38 lines (38 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"summary": "Send and receive SMS, MMS, and WhatsApp messages over a REST API.",
"intent": [
"send a text message",
"send an MMS",
"check delivery status",
"manage a WhatsApp business account"
],
"categories": ["Communications", "Messaging"],
"operations": [
{
"name": "createMessage",
"method": "POST",
"path": "/2010-04-01/Accounts/{AccountSid}/Messages.json",
"description": "Send a new message.",
"scopes": ["messaging:write"]
},
{
"name": "fetchMessage",
"method": "GET",
"path": "/2010-04-01/Accounts/{AccountSid}/Messages/{Sid}.json",
"description": "Fetch the current state of a message.",
"scopes": ["messaging:read"]
}
],
"auth": ["BasicAuth", "BearerToken"],
"limits": {
"rateLimit": "Per-account, varies by region and product line",
"concurrency": "Subaccount-scoped"
},
"agentReady": {
"hasOpenAPI": true,
"hasMCPServer": false,
"hasArazzo": false,
"hasLlmsTxt": false,
"hasJsonLd": false
}
}