This endpoint is in preview and may be modified or removed at any time.
To use this endpoint, add preview=true
to the request query parameters.
Retrieves all published maps containing the mapName (does not have to be exact).
boolean
Represents a boolean value that restricts an endpoint to preview mode when set to true.
string
The name of the map(s) to be queried.
integer
The maximum number of matching Gaia maps to return. Defaults to 50.
string
The page token indicates where to start paging. This should be omitted from the first page's request.
object
Success response.
list<GaiaMapMetadata>
object
string
The RID of a Gaia Map.
string
The GID of a Gaia map
string
string
The time when the map was first created, based on UTC timezone.
string
The last time the map was modified, based on UTC timezone.
integer
The number of layers on the map.
integer
The number of elements on the map.
string
The page token indicates where to start paging. This should be omitted from the first page's request.
To fetch the next page, clients should take the value from the nextPageToken
field of the previous response
and populate the next request's pageToken
field with it.
1
2
3
curl \
-H "Authorization: Bearer $TOKEN" \
"https://$HOSTNAME/api/gotham/v1/maps?preview=true&mapName=Example+Map+Name&pageSize=10"
1
2
3
4
5
6
7
8
9
10
11
12
{
"results": [
{
"mapRid": "ri..map.a1A2bcD3e45fg6h7ij",
"name": "Example Map Name",
"createAt": "2023-03-21T01:14:20.326Z",
"lastModified": "2023-03-23T17:38:29.323Z",
"numLayers": 1,
"numElements": 5
}
]
}