Split name.
POST/operator/splitname
Split a full name into its first and last name.
Request
Header Parameters
ipaas string
- application/json
Bodyrequired
namestringrequired
The full name that will be split.
reversedboolean
Whether first and last name should be reversed. Might be useful in languages where the last name comes first, e.g. Chinese.
Responses
- 200
- 400
Success
- application/json
- Schema
- Example (auto)
Schema
firstNamestringrequired
The first name. This might also be multiple first names.
lastNamestringrequired
The last name.
{
"firstName": "string",
"lastName": "string"
}
Bad Request
- application/json
- Schema
- Example (auto)
Schema
statusnumber
errorMessagestring
{
"status": 0,
"errorMessage": "string"
}