BalihooBlipDotNet.Blip.GetBrandProjections C# (CSharp) Метод

GetBrandProjections() публичный Метод

Get a list of data projections available for an individual brand.
public GetBrandProjections ( string brandKey ) : BlipResponse
brandKey string The unique identifier for a single brand.
Результат BlipResponse
        public BlipResponse GetBrandProjections(string brandKey)
        {
            var path = $"/brand/{brandKey}/projection";
            var request = new BlipRequest(Credentials, Endpoint);

            return request.ExecuteCommand(BlipRequest.Command.Get, path).Result;
        }