interface RunSAMLInfo {
    idp: {
        issuer: string;
    };
    mapping: SAMLAttributeMappings;
    sp: {
        acs_url: string;
        entity_id: string;
        metadata: string;
    };
}

Properties

Properties

idp: {
    issuer: string;
}

Relevant information from the Identity Provider's metadata after being parsed by TagoIO.

Type declaration

  • issuer: string

Attribute mappings for the Identity Provider's attributes to the attributes used in TagoIO.

sp: {
    acs_url: string;
    entity_id: string;
    metadata: string;
}

Information for TagoIO's API routes to use as a Service Provider in SAML authentication flows.

Type declaration

  • acs_url: string
  • entity_id: string
  • metadata: string