Skip to main content

Version 2.11.2

· 4 min read

What's Changed

  • Changes to kyb/start and kyc/start responses as new field reference introduced and other fields marked as deprecated

    • POST /corporates/{id}/kyb/start
    • POST /consumers/{id}/kyc/start
  • Spend Control: Removal of unset method, and changes to set method to overwrite the configuration with new payload.

    • POST /managed_cards/{id}/auth_rule/set
  • Addition of tag to filter to:

    • POST /transfers/get
    • POST /send/get

What's Deleted

POST /managed_cards/{id}/auth_rule/unset

What's Changed

POST /corporates/{id}/kyb/start
Return Type:

Changed response : 200 OK

Success

  • Changed content type : application/json

    New required properties:

    • reference

    New optional properties:

    • accessToken

    • Added property reference (integer)

      Reference to the parameters required to load kyb sdk.

    • Changed property accessToken (string)

      Access token to be used to communicate with KYB provider.

POST /consumers/{id}/kyc/start
Return Type:

Changed response : 200 OK

Success

  • Changed content type : application/json

    New required properties:

    • reference

    • Added property reference (integer)

      Required when calling get params which will be needed to initiate kyc

    • Changed property redirectUrl (string)

      Redirect Consumer to this URL for KYC verification

Changed response : 409 Conflict

Conflict

  • Changed content type : application/json

    • Changed property errorCode (string)

      Added enum values:

      • DOB_MISSING
      • ADDRESS_MISSING
POST /managed_cards/{id}/auth_rule/get
Return Type:

Changed response : 200 OK

Success

  • Changed content type : application/json

    • Added property allowContactless (string)

      A boolean whose default value is 'unset' instead of false/true. Allows distinction between unset and true/false

      Enum values:

      • TRUE
      • FALSE
    • Added property allowAtm (string)

      A boolean whose default value is 'unset' instead of false/true. Allows distinction between unset and true/false

      Enum values:

      • TRUE
      • FALSE
    • Added property allowECommerce (string)

      A boolean whose default value is 'unset' instead of false/true. Allows distinction between unset and true/false

      Enum values:

      • TRUE
      • FALSE
POST /managed_cards/{id}/auth_rule/set
Request:

Changed content type : application/json

  • Added property allowContactless (object)

    Enum values:

    • TRUE
    • FALSE
  • Added property allowAtm (object)

    Enum values:

    • TRUE
    • FALSE
  • Added property allowECommerce (object)

    Enum values:

    • TRUE
    • FALSE
  • Deleted property ruleType (object)

  • Changed property allowedMerchantCategories (array)

    A list of Allowed Merchant Category Codes (MCC). If left empty or not specified, current value is overwritten to an empty list.

  • Changed property blockedMerchantCategories (array)

    A list of Blocked Merchant Category Codes (MCC). If left empty or not specified, current value is overwritten to an empty list.

  • Changed property allowedMerchantIds (array)

    A list of Allowed Merchant IDs. If left empty or not specified, current value is overwritten to an empty list.

  • Changed property blockedMerchantIds (array)

    A list of Blocked Merchant IDs. If left empty or not specified, current value is overwritten to an empty list.

Return Type:

Deleted response : 409 Conflict

Conflict Changed response : 200 OK Success

  • Changed content type : application/json

    • Added property allowContactless (string)

      A boolean whose default value is 'unset' instead of false/true. Allows distinction between unset and true/false

      Enum values:

      • TRUE
      • FALSE
    • Added property allowAtm (string)

      A boolean whose default value is 'unset' instead of false/true. Allows distinction between unset and true/false

      Enum values:

      • TRUE
      • FALSE
    • Added property allowECommerce (string)

      A boolean whose default value is 'unset' instead of false/true. Allows distinction between unset and true/false

      Enum values:

      • TRUE
      • FALSE
POST /transfers/get
Request:

Changed content type : application/json

  • Added property tag (string)
POST /send/get
Request:

Changed content type : application/json

  • Added property tag (string)