/
Using the API to Fetch Project and Entity
Using the API to Fetch Project and Entity
- 1 Terminologies
- 2 Template/Entity APIs
- 2.1 List Projects
- 2.1.1 Parameters
- 2.1.2 Request URL
- 2.1.3 Example Response
- 2.2 Get Project
- 2.2.1 Request URL
- 2.2.2 Example Response
- 2.3 Get Project Entity by Entity Name
- 2.3.1 Parameters
- 2.3.2 Request URL
- 2.3.3 Example Response
- 2.4 List Member Entities
- 2.4.1 Request URL
- 2.4.2 Example Response
- 2.5 List Owner Entities
- 2.5.1 Request URL
- 2.5.2 Example Response
- 2.1 List Projects
Terminologies
Organization | Archive Institute |
Project | Database Schema |
Template | Schema DDL |
Entity | Database Table |
Field | Table Column |
Entity Structure | PK -> Fk relations |
Content | Archive unit metadata |
Digital file | Files attached with archive units |
AMID | Unique identifier for every archive unit |
Template/Entity APIs
List Projects
/api/project
Parameters
Name | Type | Default | Description |
---|---|---|---|
lite | Boolean | false | Only get id and name |
onlyAdmin | Boolean | false | Only projects with admin rights |
initializedArchives | Boolean | null | Only get projects with/without initialized archives, if null ignores archive state |
Request URL
http://localhost/gui-server/api/project?lite=false&onlyAdmin=false&initializedArchives=true
Example Response
[
{
"id": "kurs",
"name": "KURS",
"description": "",
"templateId": "bb4bd713-307e-4c2d-aa0e-872a1d4bf57e",
"templateName": "ISAD(G)_Asta5_template-kurs",
"organizationId": "9c8009ac-d5b2-43f5-ba82-d39bba61941f",
"organizationName": "KURS",
"organizationCode": "KURS",
"archiveInitialized": true,
"projectStandard": "ISADG",
"systemTemplates": null
}
{
"id": "kbenh",
"name": "København",
"description": "",
"templateId": "d2ada7a6-0859-4000-a929-d98399c6f6ce",
"templateName": "Starbas-kbenh-kbenh",
"organizationId": "eb2159a2-d3c5-428c-8d7a-53686a58adbb",
"organizationName": "STARBAS",
"organizationCode": "STARBAS",
"archiveInitialized": true,
"projectStandard": "STARBAS",
"systemTemplates": null
}
]
Get Project
/api/project/{projectId}
Request URL
http://localhost/gui-server/api/project/kurs
Example Response
{
"id": "kurs",
"name": "KURS",
"description": "",
"templateId": "bb4bd713-307e-4c2d-aa0e-872a1d4bf57e",
"templateName": "ISAD(G)_Asta5_template-kurs",
"organizationId": "9c8009ac-d5b2-43f5-ba82-d39bba61941f",
"organizationName": "KURS",
"organizationCode": "KURS",
"archiveInitialized": true,
"projectStandard": "ISADG",
"systemTemplates": null
}
Get Project Entity by Entity Name
/api/project/{projectId}/template/entity
Parameters
Name | Type | Default | Description |
---|---|---|---|
name | String | Not default must be provided | Entity name ignoring case |
getFields | Boolean | true | Should include entity fields or not |
Request URL
http://localhost/gui-server/api/project/kurs/template/entity?name=arkiv&getFields=true
Example Response
[
{
"id": "335476d5-1c3a-4191-aed9-6f8394388473",
"name": "ARKIV",
"description": "",
"displayName": "Arkiv",
"templateId": "bb4bd713-307e-4c2d-aa0e-872a1d4bf57e",
"fields": [
{
"id": "818db395-ca3f-47e3-8cc6-3566681a0888",
"name": "_amid",
"displayName": null,
"description": null,
"type": "uuid",
"feature": "objectId",
"length": null,
"primaryKey": false,
"generatedPrimaryKey": false,
"unique": true,
"nullable": false,
"editable": false,
"sequence": 0,
"entityId": "335476d5-1c3a-4191-aed9-6f8394388473",
"codeTableReference": null,
"logSettings": {
"logCreate": true,
"logUpdate": true,
"logDelete": true
},
"pattern": null,
"foreignKey": false,
"inherits": false,
"initialValue": null,
"allowedEntityNames": null,
"translations": []
},
...
],
"isJunction": false,
"logSettings": {
"logCreate": true,
"logUpdate": true,
"logDelete": true
},
"isArchiveRoot": true,
"isGlobalMember": false,
"features": [],
"searchSettings": {
"isSearchable": true,
"includeParticipantForSearch": true,
"includeInheritedParticipantForSearch": false,
"includeRestrictionForSearch": true,
"includeInheritedRestrictionForSearch": false,
"includeTagForSearch": true,
"includeInheritedTagForSearch": false
},
"translations": [
{
"languageCode": "en",
"id": "5c296bdf-3a28-4a3b-95f1-8485452c768e",
"displayName": "",
"description": ""
},
...
]
}
]
List Member Entities
/api/project/{projectId}/template/entity-structure/owner/{entityId}
Request URL
http://localhost/gui-server/api/project/kurs/template/entity-structure/owner/335476d5-1c3a-4191-aed9-6f8394388473
Example Response
[
{
"id": "ec13d394-5efc-48aa-a25c-ad31e5fa5c95",
"owner": {
"id": "335476d5-1c3a-4191-aed9-6f8394388473",
"name": "ARKIV",
...
},
"member": {
"id": "ecdeff7c-b2f0-41b0-bbe9-e9dfa5d0b0df",
"name": "LOGG",
...
},
"links": [
{
"id": "c3a612ec-220a-4e27-9176-5929178b3a6b",
"owner": {
"id": "7389a042-8860-49a3-b28b-ed26f0eaab18",
"name": "arkivid",
...
},
"member": {
"id": "8f10366a-1da7-4b3e-add0-223b527ff5fd",
"name": "arkivid",
...
},
"populateDuringImport": false
}
],
"createIndex": true,
"isMemberSearchable": true
},
...
]
List Owner Entities
/api/project/{projectId}/template/entity-structure/member/{entityId}
Request URL
http://localhost/gui-server/api/project/kurs/template/entity-structure/member/ecdeff7c-b2f0-41b0-bbe9-e9dfa5d0b0df
Example Response
[
{
"id": "ec13d394-5efc-48aa-a25c-ad31e5fa5c95",
"owner": {
"id": "335476d5-1c3a-4191-aed9-6f8394388473",
"name": "ARKIV",
...
},
"member": {
"id": "ecdeff7c-b2f0-41b0-bbe9-e9dfa5d0b0df",
"name": "LOGG",
...
},
"links": [
{
"id": "c3a612ec-220a-4e27-9176-5929178b3a6b",
"owner": {
"id": "7389a042-8860-49a3-b28b-ed26f0eaab18",
"name": "arkivid",
...
},
"member": {
"id": "8f10366a-1da7-4b3e-add0-223b527ff5fd",
"name": "arkivid",
...
},
"populateDuringImport": false
}
],
"createIndex": true,
"isMemberSearchable": true
},
...
]
, multiple selections available,
Related content
How to Access the API
How to Access the API
More like this
Eksportere Asta5-baser med Ingest
Eksportere Asta5-baser med Ingest
Read with this
1.65.2 - Asta7
1.65.2 - Asta7
More like this
1.67.3 - Asta7
1.67.3 - Asta7
More like this
Finding Data Changes
Finding Data Changes
More like this