Skip to content

Commit db9409a

Browse files
author
Francisco Cardoso
committed
wip
1 parent 98edf50 commit db9409a

File tree

1 file changed

+36
-27
lines changed

1 file changed

+36
-27
lines changed

_transactions.md

+36-27
Original file line numberDiff line numberDiff line change
@@ -293,43 +293,52 @@ A webpage for 3DSecure confirmation for the user to interact with.
293293
}
294294
```
295295

296-
When creating a transaction, it may be required to send additional information
297-
regarding the beneficiary and purpose of the transaction.
296+
When creating a transaction, it may be required to send additional information regarding the beneficiary and purpose of the transaction.
298297
This is required if **both** the following conditions are met:
299298

300-
- The transaction is either a withdrawal to an external account (crypto networks, SEPA bank accounts, etc.) or a transfer to another user; and
301-
- The transaction amount is over _$3000 USD_ (or over $1000 USD, if the origin user is from Arizona, United States).
299+
- The transaction is either a withdrawal to an external account (crypto networks, SEPA bank accounts, etc.) or a transfer to another user (invites included);
300+
- The transaction amount is over _$3000 USD_ (or over _$1000 USD_, if the origin user is from Arizona, United States).
301+
302+
To obtain the transaction beneficiary requirements (or validate the `beneficiary` object) use the `?validate=true` query parameter when creating the quote. This will generate a validation error if any required beneficiary information is missing. Otherwise, the transaction will fail at the commit step with a similar error message.
303+
304+
Parameter | Description
305+
--------- | -----------
306+
beneficiary | The transaction beneficiary information. See [Beneficiary](#beneficiary).
307+
purpose | The reason for the transaction (only for transactions which relationship is not set to myself).
308+
309+
### Beneficiary
310+
311+
This beneficiary field has the following properties:
312+
313+
Parameter | Description
314+
--------- | -----------
315+
address | The transaction beneficiary address information. See [Address](#address).
316+
name | The beneficiary full name.
317+
relationship | Reflects the beneficiary's relationship to the transaction originator. Possible values are `business`, `child`, `co_worker`, `friend`, `myself`, `parent`, `sibling`
318+
319+
The `relationship` field must always be filled whenever beneficiary information is required.
320+
The other parameters can be omitted if Uphold is already in possession of the data.
321+
(e.g. if the transaction is to an existing Uphold user, or the `relationship` is set to "myself").
322+
323+
### Address
324+
325+
Property | Required | Description
326+
-------- |--------- | -----------
327+
city | yes | The city.
328+
country | yes | The country.
329+
line1 | yes | The primary address information.
330+
line2 | no | The additional information if necessary.
331+
state | yes | The state or province
332+
zipCode | yes | The postal/zip code
302333

303334
<aside class="notice">
304335
The threshold value is calculated from the <a href="#normalized">normalized</a> USD amount of the transaction,
305336
which can differ from the amount specified in the <code>denomination.amount</code> field
306337
if the transaction implies a currency conversion.
307338
</aside>
308339
<aside class="notice">
309-
Note: ACH withdrawals are <b>not required</b> to send beneficiary information,
310-
since we only support personal bank accounts, so the beneficiary (ACH account holder)
311-
is assumed to be the Uphold user who added that account.
340+
Note: ACH withdrawals do <b>not require</b> the beneficiary information to be sent. We only support personal bank accounts therefore the beneficiary (ACH account holder) is assumed to be the Uphold user who added that account.
312341
</aside>
313-
314-
The beneficiary information should be provided in the `beneficiary` object of the request payload.
315-
The `beneficiary.relationship` field must always be filled whenever beneficiary information is required.
316-
The other fields can be omitted if the data is already present in the Uphold platform
317-
(e.g. if the transaction is to an existing Uphold user, or the `beneficiary.relationship` is set to "myself").
318-
319-
The `relationship` field is a string reflecting the beneficiary's relationship to the transaction originator.
320-
Two particular types of transactions are recognized by the platform:
321-
business transactions (indicated by a `relationship` field with the value `business`)
322-
and personal transactions (indicated by the values `child`, `co_worker`, `friend`, `parent`, or `sibling`).
323-
The value `myself` can also be used when applicable.
324-
325-
Depending on the conditions of the transaction, additional fields may be required — namely, the beneficiary `name` and `address` (with subfields `city`, `country`, `line1`, `line2`, `state`, `zipCode`),
326-
as well as a `purpose` object indicating the reason for the transaction.
327-
328-
To obtain the beneficiary requirements (or validate the `beneficiary` object) when preparing a transaction,
329-
use the `?validate=true` parameter in the query string of the request to create a transaction.
330-
This will generate a validation error if any required beneficiary information is missing.
331-
Otherwise, the transaction will fail at the commit step with a similar error message.
332-
333342
<aside class="notice">
334343
Please note that at this moment, even with the <code>validate=true</code> parameter,
335344
the validation is only performed if a <code>beneficiary</code> object is passed.

0 commit comments

Comments
 (0)