Integrate with Rest APIās
We have right now only one exposed apiās which you could use it to insert your anniversary details.
BASE URL
https://www.invitte.me
APIās
1. Create users
insert user for sending anniversary event notification.
/api/users
Headers
Key | Value | type | required |
---|---|---|---|
Content-Type | application/json | string | true |
Project-id | your project id | string | true |
Project-secret | your project secret key | string | true |
Body
Key | Value | type | required |
---|---|---|---|
name | Aditya panther | string | false |
contact@invitte.me | string | true | |
user_id | your platform user_id | string | true |
anniversary_date | Fri, 20 Jun 2025 07:22:09 GMT | string or Date | true |
curl --location 'https://www.invitte.me/api/users' \
--header 'project-id: 63476hjndfsj' \
--header 'project-secret: secret' \
--header 'Content-Type: application/json' \
--data-raw '{
"users": [
{
"name": "Aditya panther",
"email": "support@invitte.me",
"user_id": "user-id-1",
"anniversary_date": "Fri, 20 Jun 2025 07:22:09 GMT"
}
]
}'
Last updated on