Admin endpoints — domain-object mapping
Registers and looks up the link between an Ark resource and its record at a backing provider —
used when onboarding existing customer / account / card data into Ark. Auth: API key in the
X-Api-Key header (no JWT on these routes). The formal schema is on the API Reference.
| Method | Path | Code | Does |
|---|---|---|---|
GET | /v1/admin/mapping/{type}/{arkId} | 200 | Read a domain-object mapping |
PUT | /v1/admin/mapping/{type}/{arkId} | 201 | Create or update a mapping |
{type} is one of CUSTOMER, ACCOUNT, or CARD.
Notes for operators
- Customer mappings also write the party record. A
CUSTOMERPUTupserts the platformparty(as anINDIVIDUAL): a successful active mapping leaves the partyACTIVE, while an inactive mapping — or a provider that reports the customer as not found / login-disabled — leaves itTERMINATED.ACCOUNTandCARDmappings do not write platform records. - Registering a mapping makes the resource routable without a prior customer-facing call, so later requests reach the right provider.
- Only
GETandPUTexist. The OpenAPI contract additionally lists aDELETE /v1/admin/mapping/{type}/{arkId}and aPOST /v1/admin/mapping/customer/{arkId}/load-data(bulk load); neither is implemented by the platform today.