Resolve Wix Payments onboarding name

<Info>This API is in beta. Endpoints, fields, and behavior may still change, so avoid depending on it in production.</Info>

Looks up the authenticated caller's first and last name from data Base44 already has, so Wix Payments onboarding doesn't have to ask the caller to type a name in. Checks the caller's saved profile first, then the billing name on their personal workspace.

The two names are returned together or not at all. A stored first name with no last name, or the reverse, counts as not found, with needs_full_name true and both name fields null.

get/api/payments/wix/resolve-name

Response

Successful Response

needs_full_nameboolean required

Whether onboarding still needs a first and last name.

first_namestring nullable

Resolved first name, or null when a complete name could not be found. Defaults to null.

last_namestring nullable

Resolved last name, or null when a complete name could not be found. Defaults to null.

Example response

{
  "first_name": "Jane",
  "last_name": "Doe"
}

Changes

Changed in 1 of the 14 revisions of this API.1