Askara API (1.0.0)
Askara.ai open API
Languages
Servers
Production
https://api.askara.ai/
- Production
https://api.askara.ai/webhooks
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.askara.ai/webhooks?page=1&itemsPerPage=20&order%5Bid%5D=asc&order%5Buuid%5D=asc&order%5Burl%5D=asc&order%5Bsecret%5D=asc&order%5BcertificateVerificationDisabled%5D=asc&order%5Benabled%5D=asc&order%5Bsubscriptions%5D=asc&order%5BcreatedAt%5D=asc&order%5BupdatedAt%5D=asc&search=string&id=0&id%5B%5D=0&uuid=string&uuid%5B%5D=string&organization=string&organization%5B%5D=string&user.email=string&user.email%5B%5D=string&user.uuid=string&user.uuid%5B%5D=string&url=string&url%5B%5D=string&certificateVerificationDisabled=true&certificateVerificationDisabled%5B%5D=true&enabled=true&enabled%5B%5D=true&subscriptions=string&createdAt%5Bbetween%5D=string&createdAt%5Bgt%5D=string&createdAt%5Bgte%5D=string&createdAt%5Blt%5D=string&createdAt%5Blte%5D=string&updatedAt%5Bbetween%5D=string&updatedAt%5Bgt%5D=string&updatedAt%5Bgte%5D=string&updatedAt%5Blt%5D=string&updatedAt%5Blte%5D=string'
Response
[ { "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f", "organization": "https://example.com/", "user": "https://example.com/", "enabled": true, "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z" } ]
- Production
https://api.askara.ai/webhooks
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.askara.ai/webhooks \
-H 'Content-Type: application/json' \
-d '{
"url": "http://example.com",
"subscriptions": "string"
}'
Response
{ "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f", "organization": "https://example.com/", "user": "https://example.com/", "url": "http://example.com", "secret": "string", "certificateVerificationDisabled": true, "enabled": true, "subscriptions": [ {} ], "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z" }
- Production
https://api.askara.ai/webhooks/{uuid}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.askara.ai/webhooks/{uuid}'
Response
{ "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f", "organization": "https://example.com/", "user": "https://example.com/", "url": "http://example.com", "secret": "string", "certificateVerificationDisabled": true, "enabled": true, "subscriptions": [ {} ], "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z" }
- Production
https://api.askara.ai/webhooks/{uuid}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://api.askara.ai/webhooks/{uuid}'
- Production
https://api.askara.ai/webhooks/{uuid}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PATCH \
'https://api.askara.ai/webhooks/{uuid}' \
-H 'Content-Type: application/merge-patch+json' \
-d '{
"url": "http://example.com",
"certificateVerificationDisabled": true,
"enabled": true,
"subscriptions": [
{}
]
}'
Response
{ "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f", "organization": "https://example.com/", "user": "https://example.com/", "url": "http://example.com", "secret": "string", "certificateVerificationDisabled": true, "enabled": true, "subscriptions": [ {} ], "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z" }