reseller

POST /v1/reseller/client-wallets/{walletId}/adjustments

Correct a client's balance.

Всички крайни точки в reseller

Всички документи за разработчици

Упълномощаване

Изпратете API ключ като токен за носене. Ключът трябва да притежава разрешението reseller.manage; ключ без него се отхвърля с 403, а не с 404.

Където отива идентификаторът на вашата организация

Този ендпойнт приема org_id като параметър на заявката. Оставете го празен и извикването ще обхване цялото ви поддървано дърво; изпратете го, за да ограничите извикването до една организация.

ИД на вашата организация се намира на екрана с API ключове във вашето табло за управление, до самия ключ. Това е същият ИД във всяко заявка, която правите.

Опитайте

Заменете всичко в квадратни скоби със собствени стойности, а ключовия заместващ символ – с ключ от вашето табло за управление.

curl -X POST https://api.zinndigital.com/v1/reseller/client-wallets/{walletId}/adjustments \
  -H "Authorization: Bearer zdk_live_…" \
  -H "Content-Type: application/json" \
  -d '{ "amount_minor": <integer>, "reason": <string> }'

Влязохте ли в профила си? API конзолата във вашето табло за управление попълва действителното идентификационно число на вашата организация и вашия собствен ключ и изпълнява заявката спрямо реалното API, за да можете да видите действителния отговор. Отворете този крайpoint в API конзолата

Детайли

Signed — positive credits, negative takes back. ⛔ A negative adjustment that would put the client below zero is refused with 422 naming what is available: you may correct your own mistake, you may not push a customer into debt. reason is required and the client sees it on their statement. A wallet belonging to another reseller answers 404, never 403, so this is not an existence oracle. Requires reseller.manage.

Параметри

ИмеТипЗадължителноКакво представлява
walletId (path)UuidДа
org_id (query)UuidНеWhich of your organizations this applies to. Required only when you belong to more than one here — otherwise it is inferred, and an id outside your direct memberships is a 404…

Тяло на заявката

ИмеТипЗадължителноКакво представлява
amount_minorintegerДаSigned minor units. ⛔ Cannot take the client below zero.
reasonstringДаRequired, and the client sees it on their statement. An unexplained movement of somebody else's money is the first thing an audit asks about.

Отговор

ИмеТипЗадължителноКакво представлява
org_idUuidДаUUIDv7 identifier — sortable by creation time (docs/02 §8).
currencystringДа
balance_minorintegerДаWhat you are owed — the float your provider is holding for you.
spendable_minorintegerДаWhat you can spend today. Lower than balance_minor when your provider's reseller programme is suspended: the deposit is still yours, but nobody is delivering service against…
reseller_org_idUuid | nullНеThe provider whose float this is.
entriesClientWalletEntry[]Да
other_floatsClientOtherFloat[]ДаBalances a previous provider still holds for you. ⛔ Normally empty. A client who changed provider is still owed what the old one took; omitting it would make that money…
providerstring<reseller, zinn>НеWho is holding this money. One screen serves both, because "credit you hold with your provider" is one question whose answer depends on the customer, not on the feature.…
pursesWalletPurse[]НеThe owner's "one ledger, named purses" — a balance may be restricted to a kind of spending. ⛔ Empty for a reseller float, which has no purses. A purse whose authoritative store…

Грешки, които този крайpoint може да върне

401 · 403 · 404 · 422 · 429