{
"child": {
"first_name": "John",
"last_name": "Doe",
"gender": "man",
"birthday": "2023-01-15"
}
}
curl --location --request PUT 'https://api.mpc.dev.placewise.com/v1/members//children/?dry_run=' \
--header 'X-User-Agent;' \
--header 'X-Product-Name;' \
--header 'X-Loyalty-Club-Slug;' \
--header 'Authorization;' \
--header 'X-Client-Authorization: ' \
--header 'Content-Type: application/json' \
--data-raw '{
"child": {
"first_name": "John",
"last_name": "Doe",
"gender": "man",
"birthday": "2023-01-15"
}
}'
{
"child": {
"id": 1,
"first_name": "John",
"last_name": "Doe",
"gender": "man",
"birthday": "2023-01-15",
"created_at": "2022-11-05T16:25:58.099512Z",
"updated_at": "2022-11-15T16:25:58.099512Z"
}
}