Yanıt Şablonu Oluşturur

Yanıt şablonu oluşturur.

post
Authorizations
Body
Namestring | nullableOptional
IsActivebooleanOptional
IsDefaultbooleanOptional
Base64Stringstring | nullableOptional
Responses
200
Yanıt şablonu oluşturur.
application/json
post
POST /edespatch/AnswerTemplates HTTP/1.1
Host: 
Authorization: Bearer JWT
Content-Type: application/json-patch+json
Accept: */*
Content-Length: 70

{
  "Name": "text",
  "IsActive": true,
  "IsDefault": true,
  "Base64String": "text"
}
{
  "ID": 1,
  "UUID": "text",
  "Name": "text",
  "IsActive": true,
  "IsDefault": true,
  "CreationDate": "2025-06-25T13:58:55.213Z",
  "TemplateID": 1
}
var options = new RestClientOptions("https://apitest.nilvera.com")
{
    MaxTimeout = -1,
};

var client = new RestClient(options);
var request = new RestRequest("/edespatch/AnswerTemplates", Method.Post);
request.AddHeader("Content-Type", "application/json");
request.AddHeader("Authorization", "APIKEY");

var body = new
{
    Name = "string",
    IsActive = true,
    IsDefault = true,
    Base64String = "string"
};

request.AddJsonBody(body);
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);

Last updated