-
Notifications
You must be signed in to change notification settings - Fork 31
LC0062
Arthur van de Vondervoort edited this page Jul 6, 2024
·
1 revision
These fields should always be part of the API Page:
-
SystemId
- This field should be exposed with the name
id
- This field should be exposed with the name
-
SystemModifiedAt
- This field should be exposed with the name
lastModifiedDateTime
. If you choose a different name, then the webhook functionality will not work properly.
- This field should be exposed with the name
page 50100 MyApiPage
{
PageType = API;
// "Field 'Rec.SystemId' exposed with the name 'id' should always be included on API Pages.
field(systemId; Rec.SystemId) { }
// "Field 'Rec.SystemModifiedAt' exposed with the name 'lastModifiedDateTime' should always be included on API Pages.
field(systemModifiedAt; Rec.SystemModifiedAt) { }
}