Config API Version 2 DGRP maps
List DGRP maps
Returns a list of DGRP maps.
Request:
GET /config/v2/igrps/{IGRP SPECIFIER}/dgrpMaps
URL Path Params
- IGRP SPECIFIER (int) - Installation ID.
Response:
Returns a list of DGRP maps under the given {IGRP SPECIFIER} that the user has access to.
- mapId (int) - DGRP map ID.
- mapTypeCode (string) - Map type code
- igrp (int) - Installation ID.
- mapName (string) - Map name
- updateDatetime (date) - Last updateDatetime
{"mapId":"1","mapTypeCode":"dgrp","igrp":"1","mapName":"GeoMap","updateDatetime":"0000-00-00 00:00:00"}
{"mapId":"2","mapTypeCode":"dgrp","igrp":"1","mapName":"GeoMap 2","updateDatetime":"0000-00-00 00:00:00"}
Read DGRP map
Returns a DGRP map.
Request:
GET /config/v2/igrps/{IGRP SPECIFIER}/dgrpMaps/{mapId}
URL Path Params
- IGRP SPECIFIER (int) - Installation ID.
- mapid (spec) - DGRP map ID
Response:
- mapId (int) - DGRP map ID.
- mapTypeCode (string) - Map type code
- igrp (int) - Installation ID.
- mapName (string) - Map name
- updateDatetime (date) - Last updateDatetime
{"mapId":"1","mapTypeCode":"dgrp","igrp":"1","mapName":"GeoMap","updateDatetime":"0000-00-00 00:00:00"}
Create DGRP map
Creates a DGRP map.
Request:
POST /config/v2/igrps/{IGRP SPECIFIER}/dgrpMaps
URL Path Params
- IGRP SPECIFIER (int) - Installation ID.
POST Params
- mapName (string) - Map name
Response:
- mapId (int) - DGRP map ID.
HTTP 201 - CREATED
{"mapId":"3"}
Update DGRP map
Updates a DGRP map.
Request:
POST /config/v2/igrps/{IGRP SPECIFIER}/dgrpMaps/{mapId}
URL Path Params
- IGRP SPECIFIER (int) - Installation ID.
- mapid (spec) - DGRP map ID
POST Params
- mapName (string) - Map name
Response:
HTTP 204 - NO CONTENT
Delete DGRP map
Deletes a DGRP map.
Request:
DELETE /config/v2/igrps/{IGRP SPECIFIER}/dgrpMaps/{mapId}
URL Path Params
- IGRP SPECIFIER (int) - Installation ID.
- mapid (spec) - DGRP map ID
Response:
HTTP 204 - NO CONTENT