Client action JSON examples

The following example shows the JSON when the client requests ISPF process an attention request:

{
    "ACTION":"ATTN"
}

The following example shows the JSON when the client requests the exit of 3 ISPF logical screens with identifier 1, 2, and 3:

{
    "ACTION":"EXIT",
    "SCR":["1",
        "2",
        "3"
    ]
}