List Configurations
The List Configurations endpoint enables you to retrieve all configurations that your institution has access to.
You can retrieve configurations by making a GET request to the List Configurations endpoint. For example:
{{base-url}}/eds/api/v1/Configs
If successful, a 200 response is returned with details of the configurations, including the unique configId
. See the below example.
{
"status": "success",
"response": {
"content": [
{
"configId": "85456236-20250758063331",
"pmId": 20,
"productId": 345678,
"status": "active",
"messageTypeFilter": [
1,
2
],
"createdDate": "2025-07-01T14:10:00Z",
"lastUpdatedDate": "2025-07-01T14:10:00Z"
}
],
"totalCount": 1
}
}
More Information
- For more information on the fields in the List Configurations endpoint, see List Configurations - Field Descriptions.
- To view the endpoint in the API Explorer, see List Configurations.
Updated 1 day ago
What’s Next