-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmodel_member_create_request.go
More file actions
20 lines (18 loc) · 1.3 KB
/
model_member_create_request.go
File metadata and controls
20 lines (18 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
* MX API
*
* The MX Atrium API supports over 48,000 data connections to thousands of financial institutions. It provides secure access to your users' accounts and transactions with industry-leading cleansing, categorization, and classification. Atrium is designed according to resource-oriented REST architecture and responds with JSON bodies and HTTP response codes. Use Atrium's development environment, vestibule.mx.com, to quickly get up and running. The development environment limits are 100 users, 25 members per user, and access to the top 15 institutions. Contact MX to purchase production access.
*
* API version: 0.1
*/
package atrium
type MemberCreateRequest struct {
Credentials []CredentialRequest `json:"credentials,omitempty"`
Identifier string `json:"identifier,omitempty"`
IsOauth bool `json:"is_oauth,omitempty"`
InstitutionCode string `json:"institution_code"`
Metadata string `json:"metadata,omitempty"`
ReferralSource string `json:"referral_source,omitempty"`
SkipAggregation bool `json:"skip_aggregation,omitempty"`
UiMessageWebviewURLScheme string `json:"ui_message_webview_url_scheme,omitempty"`
}