Loading...
Loading...
Quiltt's Straddle integration lets you seamlessly incorporate Straddle's money movement platform into your product by leveraging Quiltt's aggregator-agnostic Processor Tokens.
To enable Straddle, simply enable the integration from the Integrations page in the Quiltt Dashboard in each environment.
Note that you will need to have an existing Straddle account to use this integration.
To create a Processor Token for Straddle, you will need to:
ACCOUNT_NUMBERS product.account.created or account.verified webhook event containing the ID for the connected account."STRADDLE" as the processor and "QUILTT" as the issuer in the body of your request.For example, to create a Processor Token for an account with ID acct_12wm3n4PaWHdcMgu6ZVDx5, you would make the following request:
POSThttps://api.quiltt.io/v1/accounts/{accountId}/processor_tokensCopy endpoint URL to clipboardcurl -X POST https://api.quiltt.io/v1/accounts/acct_12wm3n4PaWHdcMgu6ZVDx5/processor_tokens \
-H "Authorization: Bearer YOUR_API_SECRET" \
-H "Content-Type: application/json" \
-d '{
"processor": "STRADDLE",
"issuer": "QUILTT"
}'
A successful request will return a 201 Created status code along with the newly created Processor Token object in the response body:
{
"token": "YWNjdF8xMzFMV2xXSUJJY3lUQ3pqdGRMUnhTOjA1NTQ1OTYyMTE5NjNiZWNjODg5MTVkOThlMTY3NDdiMzNhMzlmZGYx",
"account": {
"id": "acct_16FvuCM1Pg8NzjwuN9qndzm",
"type": "SPENDING"
},
"environment": {
"id": "env_12zvI6ZO3hPKenffrRy2Ke",
"mode": "SANDBOX"
},
"issuer": "QUILTT",
"processor": "STRADDLE",
"expiresAt": "2027-02-01T12:00:00Z"
}
Now that you have the Processor Token, you can send it to Straddle to initiate money movement operations on behalf of your end-user. See Straddle's Bridge API guide here for more information.