Skip to main content

spo tenant applicationcustomizer get

Get an application customizer that is installed tenant-wide

Usage

m365 spo tenant applicationcustomizer get [options]

Options

-t, --title [title]

The title of the application customizer. Specify either title, id, or clientSideComponentId.

-i, --id [id]

The id of the application customizer. Specify either title, id, or clientSideComponentId.

-c, --clientSideComponentId [clientSideComponentId]

The Client Side Component Id (GUID) of the application customizer. Specify either title, id, or clientSideComponentId.

-p, --tenantWideExtensionComponentProperties

Only output the tenant wide extension component properties.

-h, --help [help]

Output usage information. Optionally, specify which section of command's help you want to see. Allowed values are options, examples, remarks, response, full. Default is options.

--query [query]

JMESPath query string. See http://jmespath.org/ for more information and examples.

-o, --output [output]

Output type. json, text, csv, md, none. Default json.

--verbose

Runs command with verbose logging.

--debug

Runs command with debug logging.

Examples

Retrieves an application customizer by title.

m365 spo tenant applicationcustomizer get --title "Some customizer"

Retrieves an application customizer by id.

m365 spo tenant applicationcustomizer get --id 3

Retrieves an application customizer by clientSideComponentId.

m365 spo tenant applicationcustomizer get --clientSideComponentId 7096cded-b83d-4eab-96f0-df477ed7c0bc

Remarks

This command can be used for retrieving an application customizer that's installed tenant-wide. To retrieve an application customizer from a specific site, view our dedicated spo applicationcustomizer get command.

Response

Standard response

{
"FileSystemObjectType": 0,
"Id": 2,
"ServerRedirectedEmbedUri": null,
"ServerRedirectedEmbedUrl": "",
"ContentTypeId": "0x00DBF24546DE6018449BB43573F3581BF0",
"Title": "HelloWorld",
"Modified": "2024-05-16T21:59:09Z",
"Created": "2024-05-16T21:59:09Z",
"AuthorId": 9,
"EditorId": 9,
"OData__UIVersionString": "1.0",
"Attachments": false,
"GUID": "dfc6a646-742b-4d9d-9fcf-892a972298ff",
"OData__ColorTag": null,
"ComplianceAssetId": null,
"TenantWideExtensionComponentId": "9a8b100c-246b-4592-9454-67826523e159",
"TenantWideExtensionComponentProperties": "{\"testMessage\":\"Test message\"}",
"TenantWideExtensionWebTemplate": null,
"TenantWideExtensionListTemplate": 0,
"TenantWideExtensionLocation": "ClientSideExtension.ApplicationCustomizer",
"TenantWideExtensionSequence": 0,
"TenantWideExtensionHostProperties": null,
"TenantWideExtensionDisabled": false
}

tenantWideExtensionComponentProperties response

{
"sampleTextOne": "One item is selected in the list.",
"sampleTextTwo": "This command is always visible."
}
CTRL + M