We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://www.monicahq.com/api/contacts#create-a-contact
Current published example:
{ "first_name": "henri", "last_name": "troyat", "nickname": "Rambo", "gender_id": 1, "birthdate_day": null, "birthdate_month": null, "birthdate_year": null, "is_birthdate_known": false, "birthdate_is_age_based": true, "is_birthdate_known": false, "birthdate_age": 29, "is_partial": false, "is_deceased": true, "deceased_date_day": 2, "deceased_date_month": 2, "deceased_date_year": 2017, "deceased_date_is_age_based": false, "is_deceased_date_known": true, }
Problems:
is_deceased_date_known
is_birthdate_known
Suggested example:
{ "first_name": "henri", "last_name": "troyat", "nickname": "Rambo", "gender_id": 1, "birthdate_day": null, "birthdate_month": null, "birthdate_year": null, "is_birthdate_known": false, "birthdate_is_age_based": true, "birthdate_age": 29, "is_partial": false, "is_deceased": true, "deceased_date_day": 2, "deceased_date_month": 2, "deceased_date_year": 2017, "deceased_date_is_age_based": false }
The text was updated successfully, but these errors were encountered:
True and correct
Sorry, something went wrong.
No branches or pull requests
https://www.monicahq.com/api/contacts#create-a-contact
Current published example:
Problems:
is_deceased_date_known
has a trailing comma that needs to be removed.is_birthdate_known
is listed twice, one needs to be removed.Suggested example:
The text was updated successfully, but these errors were encountered: