Skip to main content

API Reference

A compact index of every partner endpoint. Full request/response examples live in the guide pages linked throughout — Authentication, Sending user data, Webhooks, and Credit lifecycle.

Authentication

MethodPathPurpose
POST/auth-apps/access-tokenExchange a signed payload for a JWT access token.

Users

MethodPathPurpose
POST/card/add-userRegister a user and submit raw data.
POST/card/update-userUpdate user/balances (replace) and append transactions.
GET/card/get-normalized-user?userId=The normalized view of the data you sent.

Credit

MethodPathPurpose
POST/card/authorize-creditAuthorize a draw against the user's limit.
POST/card/submit-repaymentReport a repayment.
GET/card/credit-limit?userId=Current approved limit for a user.
GET/card/credit-info?userId=Credit records for a user (active + history). Optional onlyActive / onlyRepaid booleans narrow the result.
GET/card/credit?creditId=A specific credit's status.

Webhooks (outbound, Yumi → you)

EventTrigger
CREDIT_LIMITA user's credit limit was set or changed. See Webhooks.
tip

All card/* endpoints require a CARD-scoped access token (Authorization: Bearer …). Your partner id is carried inside the token — you never pass it explicitly.