Get All Labels

getAllLabels(query?: { page?: number })

Description

Get a list of all of your custom labels.

  • OpenPool API Endpoint: GET:/label/custom/

Parameters

NameTypeDescriptionOptional
queryobjectPagination queryYes
{
	page?: number;
}

Response

{
	count?: number;
	next?: string | null;
	previous?: string | null;
	results?: [{
      id?: string;
      address: string;
      name: string;
    }];
}