This project is currently in Beta. Please open up an issue here to report issues using the MX Platform Go library.
The MX Platform API is a powerful, fully-featured API designed to make aggregating and enhancing financial data easy and reliable. It can seamlessly connect your app or website to tens of thousands of financial institutions.
Examples for the API endpoints can be found here.
- Go >= 1.13
Make sure your project has a go.mod
file. (it is using Go Modules)
Then go get
the latest version of this library with the following command.
go get github.com/mxenabled/mx-platform-go
In order to make requests, you will need to sign up for the MX Platform API and get a Client ID
and API Key
.
Please follow the installation procedure and then run the following code to create your first User:
package main
import (
"context"
"fmt"
"github.com/mxenabled/mx-platform-go"
"os"
)
func main() {
configuration := mxplatformgo.NewConfiguration()
configuration.AddDefaultHeader("Accept", "application/vnd.mx.api.v1+json")
api_client := mxplatformgo.NewAPIClient(configuration)
// Configure environment. 0 for production, 1 for development
ctx := context.WithValue(context.Background(), mxplatformgo.ContextServerIndex, 1)
// Configure with your Client ID/API Key from https://dashboard.mx.com
ctx = context.WithValue(ctx, mxplatformgo.ContextBasicAuth, mxplatformgo.BasicAuth{
UserName: "Your Client ID",
Password: "Your API Key",
})
userCreateRequestBody := *mxplatformgo.NewUserCreateRequestBodyWithDefaults()
userCreateRequest := *mxplatformgo.NewUserCreateRequestWithDefaults()
userCreateRequest.SetMetadata("Creating a user!")
userCreateRequestBody.SetUser(userCreateRequest)
resp, r, err := api_client.MxPlatformApi.CreateUser(ctx).UserCreateRequestBody(userCreateRequestBody).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `MxPlatformApi.CreateUser``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
fmt.Printf("Response from `MxPlatformApi.CreateUser`: %#v\n", resp)
}
This project was generated by the OpenAPI Generator. To generate this library, verify you have the latest version of the openapi-generator-cli
found here.
Running the following command in this repo's directory will generate this library using the MX Platform API OpenAPI spec with our configuration and templates.
openapi-generator-cli generate \
-i https://raw.githubusercontent.com/mxenabled/openapi/master/openapi/mx_platform_api.yml \
-g go \
-c ./openapi/config.yml \
-t ./openapi/templates
Please open an issue or submit a pull request.