Getting Started
Sending your first message using our API is pretty straight forward:
curl -X POST https://api.amio.io/v1/messages \
-H 'authorization: Bearer {{access_token}}' \
-H 'content-type: application/json' \
-d '{
"channel": {
"id": "{{channel_id}}"
},
"contact": {
"id": "{{user_id}}"
},
"content": {
"type": "text",
"payload": "Hello world! 😀"
}
}'
However, start with tutorials of given platform to see how to connect a channel, where to find user id, etc.
Updated almost 7 years ago
What’s Next
See platform specific getting started tutorials or see Amio channels.