Using access token that was issued with user for generation session token

Is it possible to generate a session token through the Platform API using the “Api-Token” value of an access token that was created for the user making this request? I have only seen use cases with master tokens or secondary tokens in the documentation.

HI @AlexandrPopazov

No, it is not possible to generate a session token through the Platform API using the “Api-Token” value of an access token. Session tokens can only be generated by calling the “/users/{user_id}/token” endpoint after a user is created. The access token is used for stateful authentication and provides permanent credentials to the system, while session tokens are temporary credentials that expire after a given time.