- Update profile dashboard
Updates the profile dashboard configuration.
Profile dashboard resource.
Date range of the dashboard, in ISO-8601 interval format, extended with NOW and NOW-P* values for relative dates. This range applies to every tile that does not define its own dateRange. Supported formats:
- Start and end:
2024-01-01T00:00:00Z/2024-02-01T00:00:00Z. - Start and duration
2024-01-01T00:00:00Z/P1M. - Duration and end:
P1M/2024-02-01T00:00:00Z. - Now and duration:
NOW-P1M/NOW. This format represents the last month. - Month before last month:
NOW-P2M/NOW-P1M.
- Mock serverhttps://www.rebilly.com/_mock/catalog/all/profile/dashboard
- Sandbox serverhttps://api-sandbox.rebilly.com/organizations/{organizationId}/profile/dashboard
- Live serverhttps://api.rebilly.com/organizations/{organizationId}/profile/dashboard
- SecretApiKey
- JWT
curl -i -X PUT \
https://www.rebilly.com/_mock/catalog/all/profile/dashboard \
-H 'Content-Type: application/json' \
-H 'REB-APIKEY: YOUR_API_KEY_HERE' \
-d '{
"dateRange": "NOW-P1M/NOW",
"tabs": [
{
"title": "KYC",
"tiles": [
{
"metric": "string",
"title": "string",
"description": "string",
"dateRange": "string",
"columnsWidth": 1
}
],
"preset": "Payments"
}
]
}'Profile dashboard updated.
Total number of rate limit tokens for this request within a rate limit period. For more information, see Rate limits.
Date range of the dashboard, in ISO-8601 interval format, extended with NOW and NOW-P* values for relative dates. This range applies to every tile that does not define its own dateRange. Supported formats:
- Start and end:
2024-01-01T00:00:00Z/2024-02-01T00:00:00Z. - Start and duration
2024-01-01T00:00:00Z/P1M. - Duration and end:
P1M/2024-02-01T00:00:00Z. - Now and duration:
NOW-P1M/NOW. This format represents the last month. - Month before last month:
NOW-P2M/NOW-P1M.
Date and time when the dashboard period starts. The value is resolved from dateRange.
Date and time when the dashboard period ends. The value is resolved from dateRange.
{ "dateRange": "NOW-P1M/NOW", "periodStart": "2019-08-24T14:15:22Z", "periodEnd": "2019-08-24T14:15:22Z", "tabs": [ { … } ] }