내 커뮤니티 업적 표시줄을 확대합니다.

Mark Solution

활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.

해결됨

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? 

주제

토픽은 커뮤니티 콘텐츠를 분류하여 관련성 있는 콘텐츠를 찾는 데 도움이 됩니다.

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
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

원본 게시물의 솔루션 보기

2 답변 개

Avatar

정확한 답변 작성자:
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

Avatar

Level 2

Thanks @SatheeskannaK  for the answer