View details for preference center
get
/preference_center/v1/{preferenceCenterExternalId}
Use this endpoint to view the details for your preference centers, including when it was created and updated.
important:
Support for this endpoint is currently in early access. Contact your Braze account manager if you are interested in participating in the early access.
Rate limit
This endpoint has a rate limit of 1,000 requests per minute, per app group.
Example request
1
2
curl --location -g --request GET https://rest.iad-01.braze.com/preference_center/v1/preference_center_external_id \
--header 'Authorization: Bearer YOUR-REST-API-KEY'
Response
1
2
3
4
5
6
7
8
9
10
{
"name": "My Preference Center",
"preference_center_api_id": "preference_center_api_id",
"created_at": "example_time_created",
"updated_at": "example_time_updated",
"preference_center_title": "Example preference center title",
"preference_center_page_html": "HTML for preference center here",
"confirmation_page_html": "HTML for confirmation page here",
"redirect_page_html": null
}