Kampanyaları Getirir
Authorizations
Responses
200
OK
application/json
get
GET /general/Campaigns HTTP/1.1
Host:
Authorization: Bearer JWT
Accept: */*
200
OK
[
{
"Name": "text",
"CreatedDate": "2025-06-25T13:46:17.212Z",
"EndDate": "2025-06-25T13:46:17.212Z",
"Content": "text",
"Subject": "text",
"IsActive": true,
"Url": "text"
}
]
var options = new RestClientOptions("https://apitest.nilvera.com")
{
MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("/general/Campaigns", Method.Get);
request.AddHeader("Authorization", "APIKEY");
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);
Last updated