From a3a445e849377d55e0254c245607e0c32e6bf152 Mon Sep 17 00:00:00 2001 From: Nicki Nixon Date: Wed, 13 Nov 2024 14:26:54 -0700 Subject: [PATCH 1/3] add 200 response to member create, update readme --- .ruby-version | 2 +- README.md | 2 +- openapi/mx_platform_api.yml | 6 ++++++ 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.ruby-version b/.ruby-version index 85588be..872e120 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -ruby-3.0.0 +ruby-3.1.0 diff --git a/README.md b/README.md index 235fe98..549a47a 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ # MX's OpenAPI Specification -This repository contains the OpenAPI specification for the [MX Platform API](https://docs.mx.com/api). +This repository contains the OpenAPI specification for the [MX Platform API](https://docs.mx.com/api). Changes here will also need to be added to [Docs-V2](https://gitlab.com/mxtechnologies/mx/developer-experience/projects/docs-v2); they are not currently auto-synced. ### Development diff --git a/openapi/mx_platform_api.yml b/openapi/mx_platform_api.yml index 8a0ee57..823515a 100644 --- a/openapi/mx_platform_api.yml +++ b/openapi/mx_platform_api.yml @@ -6364,6 +6364,12 @@ paths: metadata) and required parameters (credentials and institution_code) required: true responses: + '200': + content: + application/vnd.mx.api.v1+json: + schema: + "$ref": "#/components/schemas/MemberResponseBody" + description: OK "202": content: application/vnd.mx.api.v1+json: From d0371063a2c46f1ab6d62f0d60cc8176a64fde5b Mon Sep 17 00:00:00 2001 From: Nicki Nixon Date: Wed, 13 Nov 2024 14:32:22 -0700 Subject: [PATCH 2/3] change quotation type --- README.md | 4 ++++ openapi/mx_platform_api.yml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 549a47a..6b79700 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,10 @@ This repository contains the OpenAPI specification for the [MX Platform API](https://docs.mx.com/api). Changes here will also need to be added to [Docs-V2](https://gitlab.com/mxtechnologies/mx/developer-experience/projects/docs-v2); they are not currently auto-synced. +# Client Libraries + +To keep the client SDKs up to date with any changes made here, please see update instructions [here](https://mxcom.atlassian.net/wiki/spaces/ENGINEERIN/pages/79626241/Platform+API+SDK+Client+Libraries) + ### Development Run the command `bundle` to install the gems required to run the CI validations locally. diff --git a/openapi/mx_platform_api.yml b/openapi/mx_platform_api.yml index 823515a..8e90f58 100644 --- a/openapi/mx_platform_api.yml +++ b/openapi/mx_platform_api.yml @@ -6364,7 +6364,7 @@ paths: metadata) and required parameters (credentials and institution_code) required: true responses: - '200': + "200": content: application/vnd.mx.api.v1+json: schema: From 671f398a1b4e87060bfdc06cdc9daf0cdc2dcdf6 Mon Sep 17 00:00:00 2001 From: Nicki Nixon Date: Thu, 14 Nov 2024 16:00:48 -0700 Subject: [PATCH 3/3] Remove links to private docs/repos --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6b79700..76b95c6 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,11 @@ # MX's OpenAPI Specification -This repository contains the OpenAPI specification for the [MX Platform API](https://docs.mx.com/api). Changes here will also need to be added to [Docs-V2](https://gitlab.com/mxtechnologies/mx/developer-experience/projects/docs-v2); they are not currently auto-synced. +This repository contains the OpenAPI specification for the [MX Platform API](https://docs.mx.com/api). Changes here will also need to be added to the MX doc site; they are not currently auto-synced. # Client Libraries -To keep the client SDKs up to date with any changes made here, please see update instructions [here](https://mxcom.atlassian.net/wiki/spaces/ENGINEERIN/pages/79626241/Platform+API+SDK+Client+Libraries) +To keep the client SDKs up to date with any changes made here, please see Platform API SDK Client Libraries article in Confluence. ### Development