Hi @Mark_Mcniff1
Looking at the documentation link @engin_arlak shared, IS 10.7 JWT functionality is for incoming calls.
If your ask if for incoming calls, IS acts as server
- Client generates JWT signature using an external Identity provider
- Client sends JWT in http header to IS
- IS validates if it is valid JWT based on the certificate imported
If your ask is for outgoing calls, which means IS acts as a client and you want to generate JWT and attach in the Header
- IS generates JWT using certificate and algorithm ( functionality similar to identity provider)
- IS attaches JWT in Http header
- IS invokes external APIs with JWT part of the header
Built in service pub.jwt:generateSignedJWT will help for the second scenario but if it is only available in later version, you may have to custom code.
HTH
Senthil
#Integration-Server-and-ESB#webMethods