Askara.ai open API
Askara API (1.0.0)
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%5Buuid%5D=asc&order%5Borganization%5D=asc&order%5Buser%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&uuid=string&uuid%5B%5D=string&organization=string&organization%5B%5D=string&user.email=string&user.email%5B%5D=string&url=string&url%5B%5D=string&subscriptions=string&subscriptions%5B%5D=string&user.uuid=string&user.uuid%5B%5D=string&certificateVerificationDisabled=true&enabled=true&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": "123e4567-e89b-12d3-a456-426614174000", "user": "123e4567-e89b-12d3-a456-426614174000", "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": "123e4567-e89b-12d3-a456-426614174000", "user": "123e4567-e89b-12d3-a456-426614174000", "url": "http://example.com", "secret": "string", "certificateVerificationDisabled": true, "enabled": true, "subscriptions": [ "new_document" ], "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": "123e4567-e89b-12d3-a456-426614174000", "user": "123e4567-e89b-12d3-a456-426614174000", "url": "http://example.com", "secret": "string", "certificateVerificationDisabled": true, "enabled": true, "subscriptions": [ "new_document" ], "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": [
      "new_document"
    ]
  }'Response
{ "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f", "organization": "123e4567-e89b-12d3-a456-426614174000", "user": "123e4567-e89b-12d3-a456-426614174000", "url": "http://example.com", "secret": "string", "certificateVerificationDisabled": true, "enabled": true, "subscriptions": [ "new_document" ], "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z" }