| Method | HTTP request | Description |
|---|---|---|
| get_connect_widget | POST /users/{user_guid}/connect_widget_url | Embedding in a website |
ConnectWidgetResponseBody get_connect_widget(user_guid, body)
Embedding in a website
This endpoint will return a URL for an embeddable version of MX Connect.
# load the gem
require 'atrium-ruby'
client = Atrium::AtriumClient.new("YOUR_API_KEY", "YOUR_CLIENT_ID")
user_guid = "USR-123" # String | The unique identifier for a `user`.
body = Atrium::ConnectWidgetRequestBody.new # ConnectWidgetRequestBody | Optional config options for WebView (is_mobile_webview, current_institution_code, current_member_guid, update_credentials)
begin
#Embedding in a website
response = client.connectWidget.get_connect_widget(user_guid, body)
p response
rescue Atrium::ApiError => e
puts "Exception when calling ConnectWidgetApi->get_connect_widget: #{e}"
end| Name | Type | Description | Notes |
|---|---|---|---|
| user_guid | String | The unique identifier for a `user`. | |
| body | ConnectWidgetRequestBody | Optional config options for WebView (is_mobile_webview, current_institution_code, current_member_guid, update_credentials) |