Important Update: Community URLs redirect issues are partially resolved. Learn More. .

cancel
Showing results for 
Search instead for 
Did you mean: 

FieldIds in Attachement?

AbhishekRai
Collaborator III

Is there any easy way to get Field IDs from different Attachment fields by using Rest API?

1 ACCEPTED SOLUTION

Accepted Solutions

Ilya_Khen
Champion III

Do not you know already ID field from Application Builder?

 

Otherwise, you get full metadata of an application from:

/api/core/system/fielddefinition/application/[APPLICATION_ID]

View solution in original post

4 REPLIES 4

Ilya_Khen
Champion III

Do not you know already ID field from Application Builder?

 

Otherwise, you get full metadata of an application from:

/api/core/system/fielddefinition/application/[APPLICATION_ID]

DavidPetty
Archer Employee
Archer Employee

Abhishek, you'd call /api/core/system/fielddefinition/application/*application id* and pass

{
"Value": "?$filter=Type eq '11'"
}

That will return all the attachment field types for the given application.

 Advisory Consultant

Thanks IIya.

Thanks David.