Skip to main content

Transport Layer Security

All communication to and from BidZenith takes place using Transport Layer Security (TLS) over an encrypted communication channel.

REST API configuration

Nothing specifically needs to be done to make use of TLS with the REST API; simply use the https://app.bidzenith.com endpoint.

gRPC API configuration

gRPC handles configuration of the TLS channel using channel credentials, and you should refer to the gRPC documentation for additional configuration options for configuring channels.

The minimum configuration to configure a channel with credentials for popular languages is:

var channel = GrpcChannel.ForAddress("https://app.bidzenith.com");

// use the channel