Retrieving fully qualified exception type name via hook/api

It appears that the Sentry WebHook payload does not give you the fully qualified exception name, and retrieving the issue via the API does not give you it either.

I would like this as I am sending the payload to an endpoint that has filtering logic that partly depends on the full namespace of the exception type to perform it’s logic correctly.

In my development environment I threw a System.InvalidCastException, it got captured and sent out to sentry by the C# ravenClient I got from NuGet, and the payload sent out to my endpoint did not contain the full namespace of the exception type, just ‘InvalidCastException’.

Thanks for any help or advice you can give me!