Hi,
It's easy, you just get the response using your callbacks, like: onAccept, onReject and etc.
If you remember that previous thing I helped you with (how to get some "X-" custom SIP header from the 200 OK response), so you just do it within this kind of callback:
var inviterInviteOptions: InviterInviteOptions = {
requestDelegate: {
onAccept(response: AckableIncomingResponseWithSession)
{
....
....
var callUUID = response.message.getHeader("X-UUID") || "";
var statusCode = response.message.statusCode;
....
....
},
onReject(response: IncomingResponse) {
var statusCode = response.message.statusCode;