Skip to content

Update Users Response object with additional fields #163

New issue

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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions openapi/mx_platform_api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4005,14 +4005,46 @@ components:
type: object
UserResponse:
properties:
accepted_terms_and_conditions_at:
example: 2026-12-08 00:00:00.000000
nullable: true
type: string
born_on:
example: 1990-05-15
nullable: true
type: string
credit_score:
example: 750
nullable: true
type: integer
email:
example: email@provider.com
nullable: true
type: string
email_is_verified:
example: true
nullable: true
type: boolean
failed_token_login_attempts_count:
example: 0
nullable: true
type: integer
first_name:
example: Steven
nullable: true
type: string
gender:
example: M
nullable: true
type: string
guid:
example: USR-d74cb14f-fd0a-449f-991b-e0362a63d9c6
nullable: true
type: string
has_accepted_terms_and_conditions:
example: true
nullable: true
type: boolean
id:
example: My-Unique-ID
nullable: true
Expand All @@ -4021,10 +4053,30 @@ components:
example: false
nullable: true
type: boolean
is_restricted:
example: false
nullable: true
type: boolean
last_name:
example: Universe
nullable: true
type: string
logged_in_at:
example: 2026-12-08 00:00:00.000000
nullable: true
type: string
metadata:
example: '{\"first_name\": \"Steven\", \"last_name\": \"Universe\"}'
nullable: true
type: string
phone:
example: 555-555-5555
nullable: true
type: string
postal_code:
example: 12345
nullable: true
type: string
type: object
UserResponseBody:
properties:
Expand Down