Field | Type | Required | Description | Example |
---|---|---|---|---|
user_id |
str | ✔️ | The ID of the user being impersonated. | user_1a2b3c |
actor |
models.CreateActorTokenActor | ✔️ | The actor payload. It needs to include a sub property which should contain the ID of the actor. This whole payload will be also included in the JWT session token. |
{ "sub": "user_2OEpKhcCN1Lat9NQ0G6puh7q5Rb" } |
expires_in_seconds |
Optional[int] | ➖ | Optional parameter to specify the life duration of the actor token in seconds. By default, the duration is 1 hour. |
3600 |
session_max_duration_in_seconds |
Optional[int] | ➖ | The maximum duration that the session which will be created by the generated actor token should last. By default, the duration of a session created via an actor token, lasts 30 minutes. |
1800 |