API de gerenciamento de pedidos da LIO.
This C# SDK is automatically generated by the Swagger Codegen project:
- API version: 1.0.0
- SDK version: 1.0.0
- Build package: io.swagger.codegen.languages.CSharpClientCodegen
- .NET 4.0 or later
- Windows Phone 7.1 (Mango)
The DLLs included in the package may not be the latest version. We recommend using [NuGet] (https://docs.nuget.org/consume/installing-nuget) to obtain the latest version of the packages:
Install-Package RestSharp
Install-Package Newtonsoft.Json
NOTE: RestSharp versions greater than 105.1.0 have a bug which causes file uploads to fail. See RestSharp#742
Run the following command to generate the DLL
- [Mac/Linux]
/bin/sh build.sh
- [Windows]
build.bat
Then include the DLL (under the bin
folder) in the C# project, and use the namespaces:
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
A .nuspec
is included with the project. You can follow the Nuget quickstart to create and publish packages.
This .nuspec
uses placeholders from the .csproj
, so build the .csproj
directly:
nuget pack -Build -OutputDirectory out IO.Swagger.csproj
Then, publish to a local feed or other host and consume the new package via Nuget as usual.
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class Example
{
public void main()
{
// Configure API key authorization: access-token
Configuration.Default.ApiKey.Add("access-token", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Configuration.Default.ApiKeyPrefix.Add("access-token", "Bearer");
// Configure API key authorization: client-id
Configuration.Default.ApiKey.Add("client-id", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Configuration.Default.ApiKeyPrefix.Add("client-id", "Bearer");
// Configure API key authorization: merchant-id
Configuration.Default.ApiKey.Add("merchant-id", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Configuration.Default.ApiKeyPrefix.Add("merchant-id", "Bearer");
var apiInstance = new OrderManagementApi();
var clientId = clientId_example; // string | Token da aplicação (APP Token) gerado durante o processo de cadastro.
var accessToken = accessToken_example; // string | Token de acesso (Access Token) gerado durante o processo de cadastro.
var merchantId = merchantId_example; // string | Identificador do estabelecimento comercial gerado durante o processo de cadastro.
var id = id_example; // string | Identificador do pedido.
var body = new Body1(); // Body1 |
try
{
InlineResponse201 result = apiInstance.OrderAddItem(clientId, accessToken, merchantId, id, body);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling OrderManagementApi.OrderAddItem: " + e.Message );
}
}
}
}
All URIs are relative to https://api.cielo.com.br/sandbox-lio/order-management/v1
Class | Method | HTTP request | Description |
---|---|---|---|
OrderManagementApi | OrderAddItem | POST /orders/{id}/items | |
OrderManagementApi | OrderCreate | POST /orders | |
OrderManagementApi | OrderDelete | DELETE /orders/{id} | |
OrderManagementApi | OrderDeleteItem | DELETE /orders/{id}/items/{itemId} | |
OrderManagementApi | OrderGet | GET /orders/{id} | |
OrderManagementApi | OrderGetByParameters | GET /orders | |
OrderManagementApi | OrderGetItem | GET /orders/{id}/items | |
OrderManagementApi | OrderGetTransactions | GET /orders/{id}/transactions | |
OrderManagementApi | OrderUpdate | PUT /orders/{id} | |
OrderManagementApi | OrderUpdateItem | PUT /orders/{id}/items/{itemId} |
- Model.Body
- Model.Body1
- Model.Body2
- Model.Card
- Model.ErrorResponse
- Model.InlineResponse200
- Model.InlineResponse201
- Model.InlineResponse401
- Model.Order
- Model.OrderItem
- Model.OrdersCard
- Model.OrdersItems
- Model.OrdersPaymentProduct
- Model.OrdersPaymentProductSub
- Model.OrdersTransactions
- Model.PaymentProduct
- Model.Response
- Model.SubPaymentProduct
- Model.Transaction
- Type: API key
- API key parameter name: access-token
- Location: HTTP header
- Type: API key
- API key parameter name: client-id
- Location: HTTP header
- Type: API key
- API key parameter name: merchant-id
- Location: HTTP header