Get Parcel Info Data

17 May 2019

  • C10 - the meaning of this command changed to be able to query a parcel by UUID.

1 April 2016

  • Release 9.57 - added.

<data Commands> Type: Corrade progressive command Command[wiki]: getparcelinfodata Description[wiki]: The getparcelinfodata command can be used to query a parcel by UUID following the ParcelInfo structure. Permissions[wiki]: land Parameters[wiki]: group, password, data, parcel Last Changes[wiki]: Release 9.57 - added. </data>

The getparcelinfodata command can be used to query a parcel by UUID following the ParcelInfo structure.

Command Required Parameters Required Corrade Permissions Example
getparcelinfodata group, password, data land
llInstantMessage(CORRADE,
    wasKeyValueEncode(
        [
            // gets the UUID of the texture
            // of the parcel snapshot and
            // the traffic score from a parcel
            // on the current region
            "command", "getparcelinfodata",
            "group", wasURLEscape(GROUP),
            "password", wasURLEscape(PASSWORD),
            "parcel", "edf40167-710f-45c8-9135-d85d03a22b9b",
            "data", wasListToCSV(
                [
                    "SnapshotID", 
                    "Dwell"
                ]
            ),
            "callback", wasURLEscape(URL)
        ]
    )
);