Authorizations
API Key
Response
200 - application/json
Default Response
List all child realms that use a parent’s currency
curl --request GET \
--url https://api.drip.re/api/v1/realms/{realmId}/currencies/{currencyId}/shares \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"childRealmId": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"permissions": [
"<string>"
],
"status": "<string>",
"childRealm": {
"id": "<string>",
"name": "<string>"
}
}
]
}API Key
Default Response
Show child attributes
Was this page helpful?
curl --request GET \
--url https://api.drip.re/api/v1/realms/{realmId}/currencies/{currencyId}/shares \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"childRealmId": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"permissions": [
"<string>"
],
"status": "<string>",
"childRealm": {
"id": "<string>",
"name": "<string>"
}
}
]
}