EasyPost Create Webhook returns null

290 Views Asked by At

I tried to create an easy post webhook using easy post in asp.net core API project. it returns a null value in webhook creations.

i tried this

using EasyPost;
EasyPost.ClientManager.SetCurrent("<YOUR_TEST/PRODUCTION_API_KEY>");

Webhook webhook = Webhook.Create(
    new Dictionary<string, object>() {
        { "url", "https://www.foobar.com" }
    }
);

1

There are 1 best solutions below

0
On

I was able to have the webhook create method return JSON properly by using the most current version of the C# client library. This is the code snippet I used:

using System;
using System.Collections.Generic;
using EasyPost;
using Newtonsoft.Json;

namespace create_webhook
{
    class createWebhook
    {
        static void Main(string[] args)
        {
            EasyPost.ClientManager.SetCurrent(Environment.GetEnvironmentVariable("EASYPOST_API_KEY"));

            Webhook webhook = Webhook.Create(
                new Dictionary<string, object>() {
                    { "url", "https://www.foobar.com" }
                }
            );
            Console.WriteLine(JsonConvert.SerializeObject(webhook, Formatting.Indented));
        }
    }
}

Response:

{
  "id": "hook_123...",
  "mode": "test",
  "url": "https://www.foobar.com",
  "disabled_at": null
}

For reference, the API docs related to creating a webhook for C# do not specifically mention to print what is returned which is why in my example I added a print statement.