Additional

Send SMS

Send a SMS to any user. For more information about allowed characters or SMS length, please refer to the twilio documentation.

SecurityLinkcy-Auth
Request
Request Body schema: application/json
required
Any of:
consumerId
required
string <uuid>
message
required
string
Responses
204

No Content

400

Bad Request

401

Unauthorized

403

Forbidden

409

Conflict

post/api/partner/sms
Request samples
application/json
{
  • "consumerId": "9e675a24-20d6-4913-9836-f861cd23e89e",
  • "message": "string"
}
Response samples
application/json
{
  • "details": [
    ],
  • "errorCode": "PERSON_NOT_FOUND",
  • "error": "linkcy.bad.request",
  • "status": 400,
  • "timestamp": "2024-11-14T16:15:00.758733768Z"
}

Get terms and conditions

Signing Terms & Conditions is mandatory to be able to use banking features. We mandate you as a Partner to perform this action.

To do this, you can download the last of version of the TCs directly from our APIs! By default, the language is English, but if you need a specific language, feel free to ask your customer care!

Once TCs are updated, the field "termsAccepted" will change into the "false" state and you will need to use this Endpoint to get the last version. Then, you will have to PATCH your end-users (CONSUMER/CORPORATE) each time they sign the last versions.

SecurityNone
Request
query Parameters
required
object (TermsAndConditionsInfoRequestDto)

Information used to get specific terms and conditions.

Responses
200

OK

400

Bad Request

401

Unauthorized

403

Forbidden

get/api/partner/docs/terms
Request samples
Response samples
application/json
{
  • "type": "CONSUMER",
  • "downloadUrl": "string",
  • "version": "1.0",
  • "language": "EN"
}

Get bic information from an iban

Get BIC information for a given IBAN.

SecurityLinkcy-Auth
Request
path Parameters
iban
required
string
Responses
200

OK

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

get/api/partner/bic/{iban}
Request samples
Response samples
application/json
{
  • "bic": "string",
  • "name": "string"
}