Skip to main content
Create entities that can be uniquely identified and randomized, like users or sessions.

Before You Begin

Before creating entities, ensure you have:
  • An API access token with appropriate permissions
  • Determined the data type of your entity identifier (string, integer, etc.)

Create an Entity

To create an entity of type string called User:
The response includes the entity resource name you can use to reference it:

Create an Integer Entity

For entities with integer identifiers:

Supported Primary Key Types

  • COLUMN_TYPE_STRING: String identifiers (UUIDs, usernames, etc.)
  • COLUMN_TYPE_INTEGER: Integer identifiers
  • COLUMN_TYPE_BOOLEAN: Boolean values
  • COLUMN_TYPE_DOUBLE: Floating point numbers

Next Steps

After creating entities: