A simple go client library for the Form3 REST APIs built with custom operation names and swagger templates for a cleaner interface.
This is ideal for:
- Calling the API interactively (e.g. investigating resources or testing new features).
- Scripting (e.g. multi-call investigation or cleanup scripts)
- Testing, particularly when multiple calls to the API are involved.
- Load Testing, with K6 integration for initiating the requests
A simple client library with:
- Automatic authentication and re-authentication based on environment variables
- Pre-populated request objects with configurable defaults
- Sensible operation naming
- A fluent API with reduced repetition compared with vanilla swagger-go generated clients
- All the power and flexibility of Go!
Please include proof of running the full test suite over the Form3 API with the following variables set:
FORM3_CLIENT_ID
FORM3_CLIENT_SECRET
FORM3_ORGANISATION_ID
FORM3_HOST
FORM3_PRIVATE_KEY
FORM3_PUBLIC_KEY_ID
In case of external contributions, it is the responsibility of the reviewer to run those tests.
For interactive usage we recommend using gore.
Note that the usage of client IDs and secrets is deprecated but still supported using form3.WithTokenTransport
.
Mutual TLS (not yet available in all environments) is supported using form3.NewMTLSTransport
.
u, err := url.Parse(ts.URL)
if err != nil {
log.Fatal(err)
}
o, err := uuid.Parse(os.Getenv("FORM3_ORGANISATION_ID"))
if err != nil {
log.Fatal(err)
}
f3, err := form3.New(
form3.WithBaseURL(*u),
form3.WithOrganisationID(o),
form3.WithRequestSigningTransport(
form3.NewRequestSigningTransport(
form3.WithPrivateKey(privKey),
form3.WithPublicKeyID(pubKeyID))))
if err != nil {
log.Fatal(err)
}
The following environment variables need to be set when constructing the client
using form3.NewFromEnv
.
Environment variable | Description |
---|---|
FORM3_HOST |
Form3 host URL, e.g. https://api.form3.tech |
FORM3_PUBLIC_KEY_ID |
Public key ID for request signing |
FORM3_PRIVATE_KEY |
Private key in PEM format for request signing |
FORM3_ORGANISATION_ID |
Organisation ID |
DEBUG |
Output full HTTP calls and responses |
The client is generated using go-swagger
.
- yq
- Python 3 with
pyaml
Tasks in the Makefile
download and preprocess the latest API swagger version:
make install-swagger
to install go-swagger if not already installed.make
to regenerate the client files.
Copyright 2019-2021 Form3 Financial Cloud
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.