Expand my Community achievements bar.

We are excited to introduce our latest innovation to enhance the Adobe Campaign user experience — the Adobe Campaign v8 Web User Interface!
SOLVED

what is resourceType in custom resources api?

Avatar

Level 2

I'm using this document for referring- Interacting with custom resources . This is the endpoint

 

GET /customResources/resourceType/<customResourceName>. I have created the custom resource and have a name for it and i'm trying to fetch it using this API but i'm not aware of the resourceType. Can somebody help me on this? 

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi @Sushmita32,

 

GET /customResources/resourceType/<customResourceName> : Provides metadata for the resource. Take a look at the below example,

https://experienceleague.adobe.com/docs/campaign-standard/using/working-with-apis/global-concepts/me...

 

If you're going to get/post/patch/delete some data to the custom resource you should be using,

Example:
GET https://mc.adobe.io/<org_name>/customResources/<customResourceName>

 

Thanks, Sathees

View solution in original post

2 Replies

Avatar

Correct answer by
Community Advisor

Hi @Sushmita32,

 

GET /customResources/resourceType/<customResourceName> : Provides metadata for the resource. Take a look at the below example,

https://experienceleague.adobe.com/docs/campaign-standard/using/working-with-apis/global-concepts/me...

 

If you're going to get/post/patch/delete some data to the custom resource you should be using,

Example:
GET https://mc.adobe.io/<org_name>/customResources/<customResourceName>

 

Thanks, Sathees