List all mappings in a given project. If more than limit
mappings exist, a cursor for pagination will be returned with the response.
List of mappings and an optional cursor.
The response for a bad request.
Validation Error
mapping_list = client.hosted_extractors.mappings.list(limit=5) for mapping in client.hosted_extractors.mappings: mapping # do something with the mapping for mapping_list in client.hosted_extractors.mappings(chunk_size=25): mapping_list # do something with the mappings
{- "items": [
- {
- "externalId": "my.known.id",
- "mapping": {
- "expression": "string"
}, - "input": {
- "type": "protobuf",
- "messageName": "string",
- "files": [
- {
- "fileName": "string"
}
]
}, - "published": true,
- "createdTime": 1730204346000,
- "lastUpdatedTime": 1730204346000
}
], - "nextCursor": "string"
}