API އަދި އިންޓެގްރޭޝަން
އީކޯސިސްޓަމް
ނެޓިވް އިންޓެގްރޭޝަން އަދި ބާރުގަދަ ޑިވެލޮޕަރ API ބޭނުންކޮށް ތިޔަ ސްޓެކް ގެ ކޮންމެ ޓޫލެއް ގުޅައި AI ރިސެޕްޝަނިސްޓް ކަނެކްޓް ކުރައްވާ.
CRM
ކޮންޓެކްޓް ސިންކް، ކޯލް ލޮގް، ޑީލް އޮޓޮމެޓިކޮށް އަޕްޑޭޓް
ކެލެންޑަރ
ރިއަލް-ޓައިމް ލިބެން ހުރުން ސިންކާ އެކު އޮޓޮމެޓެޑް ޝެޑިއުލިންގ
ކޮމިއުނިކޭޝަން
ޕްލެޓްފޯމް ތަކުގައި ނޮޓިފިކޭޝަން އަދި ވާހަކަ ރޫޓް ކުރެވެ
PMS (ޕްރޮޕަޓީ މެނޭޖްމެންޓް)
ހޮޓެލް އަދި ޕްރޮޕަޓީ މެނޭޖްމެންޓް ސިސްޓަމް ކަނެކްޓިވިޓީ
ޑިވެލޮޕަރ API
އެންޓަރޕްރައިޒް-ގްރޭޑް API ބޭނުންކޮށް ކަސްޓަމް އިންޓެގްރޭޝަން ބިނާކުރައްވާ
REST API
OpenAPI 3.0 ސްޕެސިފިކޭޝަނާ އެކު އެޖެންޓް، ވާހަކަ، ކޮންޓެކްޓް، އެނަލިޓިކްސް ފުލް CRUD އޮޕަރޭޝަން.
Webhooks
ރީޓްރައި ލޮޖިކް އަދި HMAC ވެރިފިކޭޝަނާ އެކު ކޯލް، މެސެޖް، ބުކިންގ، ސްޓޭޓަސް ބަދަލުތަކަށް ރިއަލް-ޓައިމް އިވެންޓް ނޮޓިފިކޭޝަން.
SDK ތައް
ޓައިޕް-ސޭފް އިންޓަފޭސް އަދި ފުރިހަމަ ޑޮކިއުމެންޓޭޝަނާ އެކު Python، Node.js، Go، PHP އޮފިޝަލް ކްލައިންޓް ލައިބްރަރީ.
import { AIReceptionist } from '@aireceptionist/sdk';
const client = new AIReceptionist({ apiKey: 'air_live_...' });
// Create an AI agent
const agent = await client.agents.create({
name: 'Front Desk',
language: 'en-US',
voice: 'professional-female',
industry: 'hospitality',
});
// Listen for incoming calls
client.on('call.started', async (call) => {
console.log(`Incoming call from ${call.callerNumber}`);
const transcript = await call.getTranscript();
await client.crm.logCall({ contactPhone: call.callerNumber, transcript });
});