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.
getparcelinfodata (Commands)
TypeCorrade progressive command
Commandgetparcelinfodata
DescriptionThe getparcelinfodata command can be used to query a parcel by UUID following the ParcelInfo structure.
Permissionsland
Parametersgroup, password, data, parcel
Last ChangesRelease 9.57 - added.

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)
        ]
    )
);