client.datacard resource exposes the production license system in the Star Wars Combine universe. A datacard is a manufacturing license that authorizes a faction to produce a specific type of entity — a ship class, a weapon, a droid, and so on. By calling datacard.list() with a faction ID, you get the full list of entity types that faction is authorized to manufacture.
Listing datacards
datacard.list()
Returns a paginated list of all datacards held by a faction.The faction UID in
"type:id" format, e.g. "20:123". Note this parameter is named factionId, not uid.Full example
The parameter name for
datacard.list() is factionId, not uid. This differs from other resource methods that use uid for their primary identifier.Related resources
Faction
Retrieve faction details using the same faction UID.
Types
Look up full entity type definitions for the entities a datacard covers.
Inventory
List the ships and items a faction has already produced.
Pagination
Learn how Page<T> works and how to auto-paginate datacard lists.