storage
Store your contacts
This is the Contact service
Create a contact
Delete a contact
List contacts
Read contact details
Update a contact
Create Request
Response
{
"contact": {
"id": "42e48a3c-6221-11ec-96d2-acde48001122",
"name": "joe",
"phones": [
{
"label": "home",
"number": "010-12345678"
},
{
"label": "work",
"number": "010-87654321"
}
],
"emails": [
{
"label": "home",
"address": "[email protected]"
},
{
"label": "work",
"address": "[email protected]"
}
],
"links": [
{
"label": "blog",
"url": "https://blog.joe.me"
}
],
"birthday": "1995-01-01",
"addresses": [
{
"label": "company address",
"location": "123 street address"
}
],
"social_medias": [
{
"label": "twitter",
"username": "joe-twitter"
},
{
"label": "facebook",
"username": "joe-facebook"
}
],
"note": "this person is very important",
"created_at": "2021-12-21T17:28:15+08:00",
"updated_at": "2021-12-21T17:31:21+08:00"
}
}