Important Update: Archer Community Scheduled Maintenance on November 23–24 - New Community Launching Soon! Learn More..
2019-04-11 07:31 AM
Is there any easy way to get Field IDs from different Attachment fields by using Rest API?
2019-04-11 07:37 AM
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]
2019-04-11 07:37 AM
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]
2019-04-11 07:50 AM
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
2019-04-11 10:18 AM
Thanks IIya.
2019-04-11 10:19 AM
Thanks David.