Skip to content

Item Upc

GET

using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using Wdcs.Wip.Api;
using Wdcs.Wip.Client;
using Wdcs.Wip.Model;

namespace wip_project.Api
{
    public partial class ItemUpcService : IGetApi
    {
        public async Task GetAsync(string apiUrl, string username, string password)
        {
            var config = new Configuration()
            {
                BasePath = apiUrl
            };
            var tokenRequest = new TokenApi(config);
            // Get the Token

            var response = tokenRequest.Create(new TokenUser(username, password));
            var authorization = "Bearer " + response.AuthToken;
            // Instantiate API
            var Api = new ItemUnitOfMeasuresApi(config);

            var upc = await Api.GetAsync(authorization: authorization);
            foreach (var UPC in upc.Results)
            {
                Console.WriteLine($"Item: {UPC.ItemId} itemUpcInfo: {UPC.UomId}");
            }
        }
    }
}