Vues :

Behavior:
How is it possible to create a login token using the Platform .NET API that can be used in an URL Integration?

Solution:
You can use the source code as follows to create a login token:

var token = conn.Organizations[0].PostToLoginTokenRelationForString(new TokenDescription()
            {
                Lifetime = TimeSpan.FromHours(48).ToString(),
                Usage = TokenUsage.Multi
            });