Link Group List

The Link Group List API allows you to retrieve all link groups created by the user.
To assign a specific group when creating a link, first use this API to fetch the list and identify the desired group’s IDX value.
Including this IDX value in your link creation request will automatically apply the group’s settings to the new link, making management more efficient.

Http Header
GET /api/link-group/v1/list
Host: https://vivoldi.com
Authorization: APIKey {Your API Key}
Content-type: -
User-agent: {Your User-agent}
Accept-Language: en
Request
{
	"nm": "My group"
}
FieldsField DescriptionsDescriptionRequiredType
grpIdxGroup IDX Retrieves the group that exactly matches the specified group IDX. int
nmGroup Name Searches for groups that contain the specified text in the group name.
Partial matches are allowed; full name match is not required.
string
 
Response
{
	"code": 0,
	"message": "",
	"result": [
		{
			"idx":1,
			"nm":"Amazon Electronics",
			"memo":"Products between $100 and $500",
			"linkCnt":112,
			"blockOverseasSticsYn":"N",
			"notfSubscYn":"N",
			"kakaoNotifyYn":"N",
			"pushNotifyYn":"N",
			"mailNotifyYn":"N",
			"regYmdt":"2024-07-20 02:30:00",
			"modYmdt":"2024-08-15 17:45:10"
		},
		{
			"idx":2,
			"nm":"XXX Advertiser Group",
			"memo":"2-year contract",
			"linkCnt":68,
			"blockOverseasSticsYn":"N",
			"notfSubscYn":"Y",
			"kakaoNotifyYn":"N",
			"pushNotifyYn":"Y",
			"mailNotifyYn":"N",
			"regYmdt":"2024-07-20 02:42:00",
			"modYmdt":"2025-02-12 11:20:50"
		}
	]
}
FieldsDescriptionType
codeResponse code (0: success)int
messageIncluded when the code is not 0. Contains an error message describing the reason for failure.string
result
FieldsField DescriptionsDescriptionType
idxGroup IDX-int
nmGroup Name-string
memoMemo-string
linkCntNumber of LinksNumber of links associated with the groupint
blockOverseasSticsYnBlock Overseas StatsY: Enabled, N: DisabledY or N
notfSubscYnPush SubscriptionY: Enabled, N: DisabledY or N
kakaoNotifyYnKakao Click NotificationY: Enabled, N: DisabledY or N
pushNotifyYnPush Click NotificationY: Enabled, N: DisabledY or N
mailNotifyYnEmail Click NotificationY: Enabled, N: DisabledY or N
regYmdtCreated DateDate the group was createdDate
modYmdtModified DateDate the group was last modifiedDate
array