# Create Call

## Create Call

> Instruct the assistant to initiate an outbound call.

```json
{"openapi":"3.0.3","info":{"title":"TeloAI API","version":"1.0.0"},"servers":[{"url":"https://api.teloai.app"}],"paths":{"/api/calls":{"post":{"tags":["Calls"],"summary":"Create Call","description":"Instruct the assistant to initiate an outbound call.","requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateCallRequest"}}}},"responses":{"200":{"description":"Call created successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Call"}}}}}}}},"components":{"schemas":{"CreateCallRequest":{"type":"object","required":["assistantId","phoneNumberId","customer"],"properties":{"assistantId":{"type":"string"},"phoneNumberId":{"type":"string"},"customer":{"type":"object","required":["number"],"properties":{"number":{"type":"string","description":"Destination phone number"}}}}},"Call":{"type":"object","properties":{"callId":{"type":"string","description":"Unique call identifier"},"assistantId":{"type":"string","description":"Which assistant handled the call"},"phoneNumberId":{"type":"string","description":"Outbound phone number used"},"customer":{"type":"object","properties":{"number":{"type":"string","description":"E.164 formatted customer number"}}},"status":{"type":"string","description":"Current call status (e.g. queued, in-progress, completed)"},"createdAt":{"type":"string","format":"date-time","description":"When the call was created"}}}}}}
```
