From c7e752fca63ea99650999de4233063909cda839e Mon Sep 17 00:00:00 2001 From: Jerome Date: Mon, 30 Jun 2025 16:53:56 -0500 Subject: [PATCH 1/2] [DevX-1747] update Users Response object with additional fields --- openapi/mx_platform_api.yml | 52 +++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/openapi/mx_platform_api.yml b/openapi/mx_platform_api.yml index 50834e8..ec25b4d 100644 --- a/openapi/mx_platform_api.yml +++ b/openapi/mx_platform_api.yml @@ -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 + birthday: + 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 @@ -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: From f15a2dc0f3278a4e5f7b47fb41f5aab01525b473 Mon Sep 17 00:00:00 2001 From: Jerome Date: Wed, 2 Jul 2025 15:40:17 -0500 Subject: [PATCH 2/2] update birthday to born_on --- openapi/mx_platform_api.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openapi/mx_platform_api.yml b/openapi/mx_platform_api.yml index ec25b4d..2ac46b1 100644 --- a/openapi/mx_platform_api.yml +++ b/openapi/mx_platform_api.yml @@ -4009,7 +4009,7 @@ components: example: 2026-12-08 00:00:00.000000 nullable: true type: string - birthday: + born_on: example: 1990-05-15 nullable: true type: string