SoftExpertAPI 1.0.6
See the version list below for details.
dotnet add package SoftExpertAPI --version 1.0.6
NuGet\Install-Package SoftExpertAPI -Version 1.0.6
<PackageReference Include="SoftExpertAPI" Version="1.0.6" />
<PackageVersion Include="SoftExpertAPI" Version="1.0.6" />
<PackageReference Include="SoftExpertAPI" />
paket add SoftExpertAPI --version 1.0.6
#r "nuget: SoftExpertAPI, 1.0.6"
#:package SoftExpertAPI@1.0.6
#addin nuget:?package=SoftExpertAPI&version=1.0.6
#tool nuget:?package=SoftExpertAPI&version=1.0.6
SoftExpertAPI
SoftExpertAPI é uma biblioteca que possui um conjunto de classes para abstrair a comunicação SOAP com a API do SoftExpert SESuite.<br> Esta biblioteca não está completa e será desenvolvida conforme necessidades e pedidos. <br> Direitos reservados a https://www.softexpert.com/<br> <br> Documentação original: https://documentation.softexpert.com/en/integration/index.html <br> <br> Se você quer falar comigo, por qualquer proposito, me mande um email. hudsonventura@outlook.com
<br> <br>
Há um exemplo funcional no diretório Examples
Importação do namespace ...
using SoftExpert;
using SoftExpert.Workflow;
<br> <br>
Criar uma instancia da API de workflow para uso
string authorization = "Basic base64encode(DOMINIO\USUARIO:SENHA)"; //deve ser codificado em base64
string url = "https://se.dominio.com.br";
SoftExpertWorkflowApi wfAPI = new SoftExpertWorkflowApi(url, authorization);
<br> <br>
Usando a API - Criando uma instancia de workflow
string ProcessID = "CCF"; //identificador do processo
string WorkflowTitle = "Teste de integração"; ; //titulo da instancia a ser criado
string UserID = "00000000000"; //matricula do usuario
newWorkflowResponse responseNewWF;
try
{
responseNewWF = wfAPI.newWorkflow(ProcessID, WorkflowTitle, UserID);
}
catch (Exception erro)
{
Console.WriteLine($"Não foi possivel criar o workflow. Erro: {erro.Message}");
return;
}
string WorkflowID = responseNewWF.RecordID;
int codigoNewWorkFlow = responseNewWF.Code;
SoftExpert.SoftExpertResponse.STATUS sucessoNewWorkFlow = responseNewWF.Status;
string detalhesNewWorkflow = responseNewWF.Detail;
<br> <br>
Usando a API - Editando dados do formulário
Dictionary<string, string> formulario = new Dictionary<string, string>();
formulario.Add("possuiendereco", "1"); //id do campo do formulário e valor (em string)
formulario.Add("ramal", "N/A");
Dictionary<string, Dictionary<string, string>> relacionamentos = new Dictionary<string, Dictionary<string, string>>();
relacionamentos.Add("tipocliente", //idrelacionamento
new Dictionary<string, string>() {
//{ "campodoformdorelacionamento", "valor" },
{ "tipo", "PESSOA JURIDICA (CNPJ)" },
}
);
string EntityID = "SOLCLIENTEFORNE";
editEntityRecordResponse entityResponse;
try
{
entityResponse = wfAPI.editEntityRecord(WorkflowID, EntityID, formulario, relacionamentos);
}
catch (Exception erro)
{
Console.WriteLine($"Não foi possivel editar o formulário. Erro: {erro.Message}");
return;
}
int sucessoEntity = entityResponse.Code;
string detalhesEntity = entityResponse.Detail;
<br> <br>
Usando a API - Execução de atividade
string ActivityID = "ATIV-SOLCCF"; //ID da atividade do fluxograma
int ActionSequence = 3; //Sequence da ação da atividade. Veja na lista de ações da atividade
executeActivityResponse executeResponse;
try
{
executeResponse = wfAPI.executeActivity(WorkflowID, ActivityID, ActionSequence, UserID);
}
catch (Exception erro)
{
Console.WriteLine($"Não foi possivel executar a atividade. Erro: {erro.Message}");
return;
}
var houveSucesso = executeResponse.Code;
var detalhes = executeResponse.Detail;
<br> <br>
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net6.0
- Newtonsoft.Json (>= 13.0.2)
- Newtonsoft.Json.Schema (>= 3.0.14)
- RestSharp (>= 108.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.3.34 | 93 | 3/20/2026 |
| 1.3.33 | 79 | 3/20/2026 |
| 1.3.32 | 429 | 8/5/2025 |
| 1.3.29 | 321 | 8/5/2025 |
| 1.3.28 | 320 | 8/5/2025 |
| 1.3.27 | 298 | 5/16/2025 |
| 1.3.26 | 443 | 5/13/2025 |
| 1.3.25 | 350 | 5/13/2025 |
| 1.3.24 | 306 | 4/10/2025 |
| 1.3.23 | 253 | 3/14/2025 |
| 1.3.22 | 293 | 10/30/2024 |
| 1.3.21 | 238 | 10/29/2024 |
| 1.3.20 | 236 | 10/29/2024 |
| 1.3.19 | 232 | 10/10/2024 |
| 1.3.18 | 243 | 10/1/2024 |
| 1.3.17 | 248 | 9/24/2024 |
| 1.3.16 | 229 | 9/24/2024 |
| 1.3.15 | 238 | 9/19/2024 |
| 1.3.14 | 253 | 9/3/2024 |
| 1.0.6 | 461 | 2/8/2023 |