Sha256: f0ed477a62d29b89194c040af2ea93f53b8c0a6ad41843963984036f54c1a4fe

Contents?: true

Size: 1.84 KB

Versions: 4

Compression:

Stored size: 1.84 KB

Contents

# VeloPayments::SubmitPayoutApi

All URIs are relative to *https://api.sandbox.velopayments.com*

Method | HTTP request | Description
------------- | ------------- | -------------
[**submit_payout**](SubmitPayoutApi.md#submit_payout) | **POST** /v3/payouts | Submit Payout



## submit_payout

> submit_payout(create_payout_request)

Submit Payout

<p>Create a new payout and return a location header with a link to get the payout.</p> <p>Basic validation of the payout is performed before returning but more comprehensive validation is done asynchronously.</p> <p>The results can be obtained by issuing a HTTP GET to the URL returned in the location header.</p> <p>**NOTE:** amount values in payments must be in 'minor units' format. E.g. cents for USD, pence for GBP etc.</p>  with no decimal places. 

### Example

```ruby
# load the gem
require 'velopayments'
# setup authorization
VeloPayments.configure do |config|
  # Configure OAuth2 access token for authorization: OAuth2
  config.access_token = 'YOUR ACCESS TOKEN'
end

api_instance = VeloPayments::SubmitPayoutApi.new
create_payout_request = VeloPayments::CreatePayoutRequest.new # CreatePayoutRequest | Post amount to transfer using stored funding account details.

begin
  #Submit Payout
  api_instance.submit_payout(create_payout_request)
rescue VeloPayments::ApiError => e
  puts "Exception when calling SubmitPayoutApi->submit_payout: #{e}"
end
```

### Parameters


Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **create_payout_request** | [**CreatePayoutRequest**](CreatePayoutRequest.md)| Post amount to transfer using stored funding account details. | 

### Return type

nil (empty response body)

### Authorization

[OAuth2](../README.md#OAuth2)

### HTTP request headers

- **Content-Type**: application/json, multipart/form-data
- **Accept**: application/json

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
velopayments-2.20.119 docs/SubmitPayoutApi.md
velopayments-2.20.29.beta1 docs/SubmitPayoutApi.md
velopayments-2.19.116 docs/SubmitPayoutApi.md
velopayments-2.19.40.beta1 docs/SubmitPayoutApi.md