Gomobile Dev Hub
const response = await fetch('https://api.gomobile.ma/api/call-requests', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
fromNumber: '+212600000000',
contactId: '550e8400-e29b-41d4655440000',
flowId: '660e8400-e29b-41d4-a75440001',
retry: { type: 'none' }
})
});
const { jobId, status } = await response.json();
console.log(`Call queued with job ID: ${jobId}`);,Everything you need to get started
Last updated




