GET imcc/v1/import/mappings/
Get a list of record mapping XSLs(eXtensible Stylesheet Language files) which can be used when importing records.
Resource URL
https://{MEDIACONTROLCENTRE_HOST}[:PORT]/imcc/v1/import/mappings/
Resource Information
Response formats | XML |
Requires authentication? | Yes (application context only) |
Required scope | Not applicable |
Response
Returns list of mapping files on success. Returns standard error response on failure.
Example Request
curl -i -H "X-Imagen-API-Key: {APPLICATION API KEY}" \
-H "X-Imagen-API-Signature: {APPLICATION SIGNATURE}" \
-X GET https://{MEDIACONTROLCENTRE_HOST}[:PORT]/imcc/v1/record/mappings
Example Result
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Mappings>
<Mapping>
<Name>mapping1</Name>
</Mapping>
<Mapping>
<Name>mappingAbc</Name>
</Mapping>
<Mapping>
<Name>mappingCDE</Name>
</Mapping>
</Mappings>
</Response>