CallInformationReport
Overview
The Call Information Report operation represents the sending of an INAP CallInformationReport.
This message is sent by the IN Tester when it is simulating the role of a Service Switching Platform (SSP).
- Direction: OUTBOUND
- From: SSP (IN Tester)
- To: SCP (Application Under Test)
Attributes
The operation attributes are as follows.
Attribute | Type | Description |
---|---|---|
type
|
String |
inap.ssp_to_scp.CallInformationReport
|
label
|
String |
An optional label for this node if it is to be the target of a branch operation.
|
send_with_next
|
Boolean |
Request that this INAP operation should be bundled with the next outbound TCAP. (Default = false ).
|
send_and_close
|
Boolean |
Request that this INAP operation should be sent as TCAP END. (Default = false ).
|
arguments
|
Object |
[Required] The structure of the INAP CallInformationReportArg to construct and send. Expressions may be supplied within this structure. |
Example
This is an example entry within the operations
array:
{
"type": "inap.ssp_to_scp.CallInformationReport",
"arguments": {
"requestedInformationList": [
{
"requestedInformationType": 0,
"requestedInformationValue": {
"callAttemptElapsedTimeValue": 5
}
},
{
"requestedInformationType": 2,
"requestedInformationValue": {
"callConnectedElapsedTimeValue": 305
}
},
{
"requestedInformationType": 30,
"requestedInformationValue": {
"releaseCauseValue_cause": 31
}
}
]
}
}
Arguments
The following outbound arguments are supported.
Argument | Type | Notes |
---|---|---|
requestedInformationList
|
Array of Object | Specify requested information list parameters as an array of Objects. |
.requestedInformationType
|
Integer | Specify requested information type. |
.requestedInformationValue
|
Object | Specify requested information value as an object containing one of the following elements. |
.callAttemptElapsedTimeValue
|
Integer | Integer. |
.callStopTimeValue
|
Octet String | Octet String. |
.callConnectedElapsedTimeValue
|
Integer | Integer. |
.calledAddressValue
|
Octet String | Octet String. |
.releaseCauseValue
|
Octet String | Octet String. |
extensions
|
Array of Object | Specify extension parameters as an array of Objects. |
.type
|
Integer |
Must match an inap .extensions number from the ExecuteTest request.
|
.criticality
|
Integer |
Integer (Default = 0 ).
|
.value
|
Binary String | This attribute can be specified as binary data. |
.value_inner
|
Integer/String |
Used as INTEGER or OCTET STRING as per extension encoding. Ignored if value is defined.
|