Static


UNAUTHENTICATED: Lists Remittance Strategies

GET /api/v1/strategies

Returns an array of valid remittance strategies and corresponding slugs. The strategies have a category (‘bank’, ‘pickup’, etc), and a fee schedule. The slug is used to indicate which provider a remittance is meant to be paid out with.

Strategies with complex number processing have a regex of null. Look at the regex_format field for details.

Fields that are not self-descriptive:

  • slug: human-readable short-hand that will be used throughout the API when referring to this deposit target
  • active: whether or not this deposit target is available
  • sameday_cutoff: anything submitted after this will be processed before the next cutoff time. This is the number of seconds starting midnight when the submitted transactions will be cut-off. Anything sent after this will be processed before the next cutoff time.
  • maximum: maximum amount that can be deposited
  • required_fields: extra fields required
  • iso_code: for banks, this is the SWIFT code

Examples

pickup: [
  { name: 'Cebuana Lhuillier', slug: 'CLH' },
  { name: 'Palawan Express',   slug: 'PLWN' }
]