Askara.ai open API
Askara API (1.0.0)
Languages
Servers
Production
https://api.askara.ai
- Productionhttps://api.askara.ai/contacts
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.askara.ai/contacts?page=1&itemsPerPage=20&order%5Buuid%5D=asc&order%5BfirstName%5D=asc&order%5BlastName%5D=asc&order%5BlegalName%5D=asc&order%5BlanguageSpoken%5D=asc&order%5BcreatedAt%5D=asc&order%5BupdatedAt%5D=asc&order%5Bgender%5D=asc&order%5Buser%5D=asc&order%5BvisibilityOption%5D=asc&order%5Bspecialty%5D=asc&order%5Bemail%5D=asc&order%5Bphone%5D=asc&order%5BstreetAddress%5D=asc&order%5BpostalCode%5D=asc&order%5Bcity%5D=asc&order%5Bcountry%5D=asc&search=string&uuid=string&uuid%5B%5D=string&firstName=string&firstName%5B%5D=string&lastName=string&lastName%5B%5D=string&legalName=string&legalName%5B%5D=string&gender=string&gender%5B%5D=string&languageSpoken=string&languageSpoken%5B%5D=string&email=string&email%5B%5D=string&user.email=string&user.email%5B%5D=string&visibilityOption=string&visibilityOption%5B%5D=string&phone=string&phone%5B%5D=string&specialty=string&specialty%5B%5D=string&streetAddress=string&streetAddress%5B%5D=string&postalCode=string&postalCode%5B%5D=string&city=string&city%5B%5D=string&country=string&country%5B%5D=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&user.uuid=string&user.uuid%5B%5D=string'Response
[ { "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f", "firstName": "string", "lastName": "string", "legalName": "string", "gender": "female", "languageSpoken": "string", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "email": "user@example.com", "visibilityOption": "shared", "phone": "+33757590893", "specialty": "allergist", "streetAddress": "string", "postalCode": "string", "city": "string", "country": "string" } ]
Bodyrequired
- application/json
- application/ld+json
- multipart/form-data
The new Contact resource
Contact medical specialty.
Enum"allergist""medical_biologist""cardiologist""radiology_center""sleep_center""mri_center""chiropractor""maxillofacial_surgeon""oral_surgeon""cosmetic_dentist"
- Productionhttps://api.askara.ai/contacts
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.askara.ai/contacts \
-H 'Content-Type: application/json' \
-d '{
"firstName": "string",
"lastName": "string",
"legalName": "string",
"gender": "female",
"languageSpoken": "string",
"email": "user@example.com",
"visibilityOption": "shared",
"phone": "+33757590893",
"specialty": "allergist",
"streetAddress": "string",
"postalCode": "string",
"city": "string",
"country": "string",
"customPrompt": "string"
}'Response
{ "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f", "firstName": "string", "lastName": "string", "legalName": "string", "gender": "female", "languageSpoken": "string", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "email": "user@example.com", "visibilityOption": "shared", "phone": "+33757590893", "specialty": "allergist", "streetAddress": "string", "postalCode": "string", "city": "string", "country": "string" }
- Productionhttps://api.askara.ai/contacts/{uuid}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.askara.ai/contacts/{uuid}'Response
{ "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f", "firstName": "string", "lastName": "string", "legalName": "string", "gender": "female", "languageSpoken": "string", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "email": "user@example.com", "visibilityOption": "shared", "phone": "+33757590893", "specialty": "allergist", "streetAddress": "string", "postalCode": "string", "city": "string", "country": "string" }
Bodyapplication/merge-patch+jsonrequired
The updated Contact resource
Contact medical specialty.
Enum"allergist""medical_biologist""cardiologist""radiology_center""sleep_center""mri_center""chiropractor""maxillofacial_surgeon""oral_surgeon""cosmetic_dentist"
- Productionhttps://api.askara.ai/contacts/{uuid}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PATCH \
'https://api.askara.ai/contacts/{uuid}' \
-H 'Content-Type: application/merge-patch+json' \
-d '{
"firstName": "string",
"lastName": "string",
"legalName": "string",
"gender": "female",
"languageSpoken": "string",
"email": "user@example.com",
"visibilityOption": "shared",
"phone": "+33757590893",
"specialty": "allergist",
"streetAddress": "string",
"postalCode": "string",
"city": "string",
"country": "string",
"customPrompt": "string"
}'Response
{ "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f", "firstName": "string", "lastName": "string", "legalName": "string", "gender": "female", "languageSpoken": "string", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "email": "user@example.com", "visibilityOption": "shared", "phone": "+33757590893", "specialty": "allergist", "streetAddress": "string", "postalCode": "string", "city": "string", "country": "string" }