Gupshup Partner Service Client
Provides authentication services for the Gupshup Partner Portal. This client handles login operations to obtain partner tokens.
const client = new GupshupPartnerServiceClient({ debug: true });const authData = await client.getPartnerToken('user@example.com', 'password'); Copy
const client = new GupshupPartnerServiceClient({ debug: true });const authData = await client.getPartnerToken('user@example.com', 'password');
Creates a new GupshupPartnerServiceClient instance
Configuration options for the client
Authenticates with the partner portal and retrieves a partner token
Partner account email address
Partner account password
Promise resolving to authentication response containing the token
When authentication fails or credentials are invalid
Gupshup Partner Service Client
Provides authentication services for the Gupshup Partner Portal. This client handles login operations to obtain partner tokens.
Example