POST api/Tarefas/Criar
Cria uma Tarefa em um Plano de Ação.
Request Information
URI Parameters
None.
Body Parameters
Informações básicas para criar uma tarefa.
PortalSIM.Domain.TarefaBaseName | Description | Type | Additional information |
---|---|---|---|
OQue |
|
string |
Documentação não disponível |
IdDoResponsavel |
|
integer |
Documentação não disponível |
IdDoPlanoDeAcao |
|
integer |
Documentação não disponível |
IdDaTarefaPai |
|
integer |
Documentação não disponível |
IdDoIndicador |
|
integer |
Documentação não disponível |
InicioPrevisto |
|
date |
Documentação não disponível |
FimPrevisto |
|
date |
Documentação não disponível |
NomeResponsavelTerceiro |
|
string |
Documentação não disponível |
EmailResponsavelTerceiro |
|
string |
Documentação não disponível |
Request Formats
application/json, text/json
Sample:
{ "OQue": "sample string 1", "IdDoResponsavel": 1, "IdDoPlanoDeAcao": 1, "IdDaTarefaPai": 1, "IdDoIndicador": 1, "InicioPrevisto": "2024-11-20T19:46:19.2458036+00:00", "FimPrevisto": "2024-11-20T19:46:19.2458036+00:00", "NomeResponsavelTerceiro": "sample string 4", "EmailResponsavelTerceiro": "sample string 5" }
application/xml, text/xml
Sample:
<TarefaBase xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PortalSIM.Domain"> <EmailResponsavelTerceiro>sample string 5</EmailResponsavelTerceiro> <FimPrevisto>2024-11-20T19:46:19.2458036+00:00</FimPrevisto> <IdDaTarefaPai>1</IdDaTarefaPai> <IdDoIndicador>1</IdDoIndicador> <IdDoPlanoDeAcao>1</IdDoPlanoDeAcao> <IdDoResponsavel>1</IdDoResponsavel> <InicioPrevisto>2024-11-20T19:46:19.2458036+00:00</InicioPrevisto> <NomeResponsavelTerceiro>sample string 4</NomeResponsavelTerceiro> <OQue>sample string 1</OQue> </TarefaBase>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
200 OK + Tarefa. 400 BadRequest + Coleção de Erros.
System.Web.Http.IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.