Gets all the document format configurations added to a profile.
URL
(GET) /api/settings/documentformats/profiles/{id}/formats?enabledOnly=
PARAMETERS
The URL parameters are:
|
id |
The profile ID. See settings/documentformats/profiles/list to enumerate all profiles. |
int, Mandatory |
|
enabledOnly |
Optional filter. Default is true.
|
bool, Optional |
RESULTS
The result is a JSON array with the file fomats and configurations in the profile:
|
id |
The document format configuration ID. Download the configuration using: settings/documentformats/configs/{id} |
int |
|
name |
The name of the profile. |
|
|
domain |
The file format code such as "MSWORD" or "XML". See File formats |
string |
|
domaint |
The file type name such as "Microsoft Word" or "XML". |
string |
|
enabled |
False if no configuration for the domain above exists in the profile. True otherwise. Disabled rows are only included if parameter enabledOnly is false. Note: A profile can contain multiple configurations (options) for the same file type. |
bool |
EXAMPLES
Excerpt of profile options:
[
{
"id": 5362,
"name": "Default",
"enabled": true,
"domain": "FRAMEMAKER",
"domaint": "Adobe FrameMaker"
},
{
"id": 5162,
"name": "Default - special",
"enabled": true,
"domain": "FRAMEMAKER",
"domaint": "Adobe FrameMaker"
},
{
"id": 5373,
"name": "Default",
"enabled": true,
"domain": "INCOPY",
"domaint": "Adobe InCopy"
},
{
"id": 5355,
"name": "Default",
"enabled": true,
"domain": "INDESIGN",
"domaint": "Adobe InDesign"
},
{
"id": 5358,
"name": "Default",
"enabled": true,
"domain": "PHOTOSHOP",
"domaint": "Adobe Photoshop"
},
....
]