fetchTribeMembers

Retrieves all survivors belonging to the tribe. This will include inactive survivors and survivors who have died.

Signatures

beacon.fetchTribeMembers(tribeId);

Parameters

tribeId

The Sentinel UUID of the desired tribe.

Return Values

Type Notes
Array An array of Character objects. It is possible for the array to be empty.

Examples

Fetch all survivors on the for a tribe

const characters = beacon.fetchTribeMembers('b72a9dd3-1a64-52a2-8f9c-f90409c871f0');

See Also