apps_management_OEM Config Schema
Get OEM Config Schema
Retrieve the OEM config schema for a given OEM type and package name. Returns the latest active schema by default. Specify version_code to retrieve a specific version. Set include_schema=false to receive metadata only (avoids the large schema_json payload).
get/v2/oem-config-schema
Query parameters
oem_type'ZEBRA' | 'HONEYWELL' | 'DATALOGIC' | 'SAMSUNG' | 'SUNMI' required
OEM manufacturer type
package_namestring required
OEM config package name (e.g. com.zebra.oemconfig.common)
version_codestring
Specific version code to retrieve. When omitted, returns the latest active schema.
include_schemaboolean
Set to false to return metadata only, omitting the schema_json field (avoids large payload)
Headers
Authorizationstring required
Bearer token for authentication
Response
Success
Example response
{
"content": {
"package_name": "com.zebra.oemconfig.common",
"version_name": "11.3.3.00",
"version_code": "10"
}
}