This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"data": { | |
"optInForm": { | |
"account": { | |
"avatarUrl": "https://cdn.filestackcontent.com/KCfpYP8sTWqIRU6DRCvf", | |
"isVerified": "true", | |
"name": { | |
"values": "{\"en\":\"Brian White\"}" | |
} | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// The mutation | |
// | |
mutation test($createMember: CreateMemberViaOptInFormInput) { | |
createMemberViaOptInForm(input: $createMember) { | |
member { | |
createdVia | |
data | |
insertedAt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// GQL query | |
// | |
mutation test($createMember: CreateMemberViaOptInFormInput) { | |
createMemberViaOptInForm(input: $createMember) { | |
member { | |
createdVia | |
data | |
insertedAt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
///////////////// | |
// The query | |
///////////////// | |
query { | |
optInForm(shortId: "an id") { | |
account { | |
avatarUrl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
query { | |
captureForm(shortId: "an id") { | |
account { | |
avatarUrl | |
isVerified | |
} | |
afterSubmission | |
avatarMedia { | |
extensionType | |
sourceUuid |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# app/controllers/institution_controller.rb | |
class InstitutionsController < ApplicationController | |
def create | |
if uses_intuit? | |
#existing code | |
else | |
service_response = Services::YodleeAccount::Register.call(current_user, params, id) | |
redirect to_some_place_after_success_login and return if service_response[:status] == :complete | |
render 'mfa_form', mfa_form: service_response[:mfa_form] and return if service_response[:status] == :missing_mfa |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Code downloaded from https://developer.yodlee.com/Aggregation_API/Sample_Apps/RUBY | |
require './aggregation/SiteApp' | |
require './util/Encryption' | |
$encryptCall = Encryption.new | |
$siteCall = SiteApp.new | |
$providerAccountId = '' | |
class AddSiteAccount |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# lib/yodlee/api/v1/provider.rb | |
class Yodlee::Api::V1::Provider < Yodlee::Api::V1::Base | |
# [ {id: 1, lastModified: 2013-01-02T00:39:52Z}, {id: 3, lastModified: 2013-01-02T00:39:52Z}, {id: 4, lastModified: 2013-01-02T00:39:52Z} ] | |
def list_all | |
caller_result = for_session.list_providers | |
list = [] | |
caller_result.provider.map do |provider| | |
partial_provider = {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# app/models/user.rb | |
class User | |
include YodleeRegistrable | |
end | |
# app/models/concers/yodlee_registrable.rb | |
module YodleeRegistrable | |
extend ActiveSupport::Concern | |
included do |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Yodlee:Api::V1::RequestBuilder | |
METADATA_REQUESTS = | |
{ | |
get_user_info: { method: :get, path: '/user' }, | |
list_accounts: { method: :get, path: '/accounts' }, | |
create_user: { method: :post, path: '/user/register' } | |
} | |
attr_accessor :cobrand_session, :user_session |
NewerOlder