Our content management system is becoming the authoritative source for branding. As such, it is becoming our responsibility to share out these resources to external vendors and others wishing to get access to a particular facility's branding.
We serve up this service via our CDN (Amazon Cloudfront) and each response is cached for 24 hours.
List Service
This service provides a listing of all entity branding in the system.
Parameters:
- service: (REQ) Set to 'list' for this service
- jsonp: (OPTIONAL) true/false - if true, wraps JSON in function call for entityBrandingControllerCallback passing in JSON as a parameter.
URL:
Format
{ "StatusCode": 200, "Status": "Success", "EntityBrandList": [ { "Title": "24/7 Emergency Care", "Identifier": "34310|24-7-Emergency-Care" }, { "Title": "Advanced Womens OB GYN", "Identifier": "20707|Advanced-Womens-Obgyn" } ] }
Detail Service
This service provides a set of all variables available from the stored entity branding for the passed id.
Parameters:
- service: (REQ) Set to 'detail' for this service
- id: (REQ) Set to the identifier of the EB that you want the full details of
- jsonp: (OPTIONAL) true/false - if true, wraps JSON in function call for entityBrandingControllerCallback passing in JSON as a parameter.
URL:
Format
{ "StatusCode": 200, "Status": "Success", "EntityBrandDetail": { "Title": "Eastern Idaho Regional Medical Center", "Identifier": "31202|EIRMC|3", "PrimaryColor": "#3a7b76", "PrimaryGradient": "#95c1bc", "SecondaryColor": "#79123e", "SecondaryGradient": "#af7f97", "SupportingColor": "#eae0bf", "SupportingGradient": "#f1ebd9", "NavFontColor": "#FFFFFF", "SubNavFontColor": "#333333", "PopColor": "#eeeeee", "TitleFontName": "Lato", "TitleFontSerifType": "false", "BodyFontName": "Lato", "BodyFontSerifType": "false", "EntityPictureSmall": { "Name": "PANDA.png", "Size": "137 KB", "RawUri": "//core.ehctest.com/contentAsset/raw-data/2352a762-3010-4050-b814-963cbe23fbe8/entityPictureSmall", "ThumbnailUri": "//core.ehctest.com/contentAsset/image/b7352a45-1744-421b-b7c8-5a107585519d/entityPictureSmall/byInode/1/filter/Thumbnail" }, "EntityPictureStandard": { "Name": "freeman.jpg", "Size": "38 KB", "RawUri": "//core.ehctest.com/contentAsset/raw-data/2352a762-3010-4050-b814-963cbe23fbe8/entityPictureStandard", "ThumbnailUri": "//core.ehctest.com/contentAsset/image/b7352a45-1744-421b-b7c8-5a107585519d/entityPictureStandard/byInode/1/filter/Thumbnail" }, "FullColorLogo": { "Name": "eirmc-450.png", "Size": "29 KB", "RawUri": "//core.ehctest.com/contentAsset/raw-data/2352a762-3010-4050-b814-963cbe23fbe8/fullColorLogo", "ThumbnailUri": "//core.ehctest.com/contentAsset/image/b7352a45-1744-421b-b7c8-5a107585519d/fullColorLogo/byInode/1/filter/Thumbnail" }, "KnockOutLogo": { "Name": "eirmc-knock-out-450.png", "Size": "18 KB", "RawUri": "//core.ehctest.com/contentAsset/raw-data/2352a762-3010-4050-b814-963cbe23fbe8/knockOutLogo", "ThumbnailUri": "//core.ehctest.com/contentAsset/image/b7352a45-1744-421b-b7c8-5a107585519d/knockOutLogo/byInode/1/filter/Thumbnail" } } }
Full List Service
This service provides a full listing of all entity branding in the system including all colors, fonts and other entity branding data.
Parameters:
- service: (REQ) Set to 'fulllist' for this service
- jsonp: (OPTIONAL) true/false - if true, wraps JSON in function call for entityBrandingControllerCallback passing in JSON as a parameter.
URL:
Format
{ "StatusCode": 200, "Status": "Success", "EntityBrandList": [ { "Title": "24/7 Emergency Care", "Identifier": "34310|24-7-Emergency-Care" ... }, { "Title": "Advanced Womens OB GYN", "Identifier": "20707|Advanced-Womens-Obgyn" ... } ] }
Division List Service
This service provides a list of ALL divisions and then lists of all entity branding within that division based upon Website Account Detail -> Facility -> Entity Branding relationships.
Parameters:
- service: (REQ) Set to 'divisionlist' for this service
- jsonp: (OPTIONAL) true/false - if true, wraps JSON in function call for entityBrandingControllerCallback passing in JSON as a parameter.
URL:
Format
NOTE: The details below are not fully displayed. All fields returned in the 'DETAIL' method above will also be returned in this service call.
{ "Status": "Success", "StatusCode": 200, "EntityBrandDivisionList": [ { "Capital": [ { "SubNavFontColor": "#ffffff", "SupportingColor": "#ebebeb", "SupportingGradient": "#ebebeb", "Title": "Appledore Medical Group" }, { "Title": "Commonwealth Perinatal", "TitleFontName": "", "TitleFontSerifType": "false" } ] }, { "Central and West Texas": [ { "Title": "H2U North Hills", "TitleFontName": "Lato", "TitleFontSerifType": "false" }, { "Title": "H2U Las Palmas-Del-Sol", "TitleFontName": "PT Sans", "TitleFontSerifType": "false" } ] } ] }
Division Service
This service provides a list of entity branding data for the specific division passed in the URL (division=). The division must be the same value as the division field located on the Website Account Detail structure.
Parameters:
- service: (REQ) Set to 'detail' for this service
- division: (REQ) Set to the division name from the division list service
- jsonp: (OPTIONAL) true/false - if true, wraps JSON in function call for entityBrandingControllerCallback passing in JSON as a parameter.
URL:
Format
NOTE: The details below are not fully displayed. All fields returned in the 'DETAIL' method above will also be returned in this service call.
{ "Status": "Success", "StatusCode": 200, "EntityBrandList": [ { "Title": "Blackman Internal Medicine", "TitleFontName": "Lato", "TitleFontSerifType": "false" }, { "Title": "Bluegrass OB/GYN", "TitleFontName": "Lato", "TitleFontSerifType": "false" }, { "Title": "Bowling Green Medical Clinic", "TitleFontName": "Lato", "TitleFontSerifType": "false" } ] }