Find gender of name.
POST/operator/gender
Find gender of name.
Request
Header Parameters
ipaas string
- application/json
Bodyrequired
firstnamestring
The first name.
fullnamestring
The full name. The first name is only used if firstname
is not provided.
Responses
- 200
- 400
Success
- application/json
- Schema
- Example (auto)
Schema
firstnamestringrequired
The first name, either from firstname
or fullname
.
lastnamestring
The last name, extracted from fullname
.
detectedGenderstringrequired
The detected gender, either male
, female
, or unisex
.
Possible values: [male
, female
, unisex
]
{
"firstname": "string",
"lastname": "string",
"detectedGender": "male"
}
Bad Request
- application/json
- Schema
- Example (auto)
Schema
statusnumber
errorMessagestring
{
"status": 0,
"errorMessage": "string"
}