Per my test, you could use following code to retrieve ContentType data
private getContentTypeData(): void {
sp.web.contentTypes
.select("Id", "Name", "Description")
.get()
.then((contentTypes) => {
console.log(contentTypes); // You can perform further operations with the contentTypes data
})
.catch((error) => {
console.log(`Error: ${error}`);
});
}
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.