Sha256: 1b328d199e9d96b957ea134b186aeaddf0300bea1049cf2c32d9b02f87502a56
Contents?: true
Size: 678 Bytes
Versions: 5
Compression:
Stored size: 678 Bytes
Contents
# File generated from our OpenAPI spec # frozen_string_literal: true module Stripe class AccountLoginLinkService < StripeService # Creates a single-use login link for a connected account to access the Express Dashboard. # # You can only create login links for accounts that use the [Express Dashboard](https://stripe.com/connect/express-dashboard) and are connected to your platform. def create(account, params = {}, opts = {}) request( method: :post, path: format("/v1/accounts/%<account>s/login_links", { account: CGI.escape(account) }), params: params, opts: opts, base_address: :api ) end end end
Version data entries
5 entries across 5 versions & 1 rubygems