Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

partnerships

roles

submittedforms

supportAttachments

supportComments

supportTickets

testimonials

users

volunteerHours

...

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"submittedforms",
    "objectAction":"list"
}

...

search

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"supportAttachments",
    "objectAction":"search",
    "search":
    {
        "resultStart": "0",
        "resultLimit": "100",
        "resultSort": "attachmentID",
        "resultOrder": "asc",
        "filters":
        [
            {
                "fieldName": "attachmentID",
                "operation": "greaterthan",
                "criteria": "0"
                
            }
        ],
        "filterProcessing": "1",
        "fields": ["attachmentID","attachmentCommentID","attachmentOldFileName","attachmentFileName","attachmentUrl","attachmentFileSize","attachmentFileType","attachmentStatus","attachmentPrivacy"]
    }
}

define

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"supportAttachments",
    "objectAction":"define"
}

add

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"supportAttachments",
    "objectAction":"add",
    "values":
    [
        {
			"attachmentCommentID": "15311",
			"attachmentBinary": "VGhpcyBpcyBhIHRleHQgZmlsZSBmb3IgQVBJIHRlc3RpbmcuCg==",
			"attachmentOldFileName": "test.txt",
			"attachmentStatus": "Active",
			"attachmentPrivacy": "Public"
        }
    ]
}

view

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"supportAttachments",
    "objectAction":"view",
    "values":
    [
        {
            "attachmentID":"1"
        }

    ],
    "fields":["attachmentID","attachmentCommentID","attachmentOldFileName","attachmentFileName","attachmentUrl","attachmentFileSize","attachmentFileType","attachmentStatus","attachmentPrivacy"]
}

...

view

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"supportComments",
    "objectAction":"view",
    "values":
    [
        {
            "commentID":"1"
        }

    ],
    "fields":["commentID","commentTicketID","commentType","commentText","commentHeader","commentPersonName","commentPersonEmail","commentAgent","commentDate"]
}

delete

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"supportComments",
    "objectAction":"delete",
    "values":
    [
        {
            "commentID":"15309"
        }
    ]
}

search

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"supportComments",
    "objectAction":"search",
    "search":
    {
        "resultStart": "0",
        "resultLimit": "100",
        "resultSort": "commentID",
        "resultOrder": "asc",
        "filters":
        [
            {
                "fieldName": "commentID",
                "operation": "greaterthan",
                "criteria": "0"
                
            }
        ],
        "filterProcessing": "1",
        "fields": ["commentID","commentTicketID","commentType","commentText","commentHeader","commentPersonName","commentPersonEmail","commentAgent","commentDate"]
    }
}

define

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"supportComments",
    "objectAction":"define"
}

add

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"supportComments",
    "objectAction":"add",
    "values":
    [
        {
			"commentTicketID": "11447",
			"commentType": "Public",
			"commentText": "This is a comment added",
			"commentHeader": "No header",
			"commentPersonName": "Test person",
			"commentPersonEmail": "test@yahoo.com",
			"commentAgent": "No",
			"ticketStatus": "Open",
			"sendNewCommentAlert": "Yes"
        }
    ]
}

...

supportTicketsSearchUnassigned

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"supportTickets",
    "objectAction":"search",
    "search":
    {
        "resultStart": "0",
        "resultLimit": "200",
        "resultSort": "ticketUpdatedDate",
        "resultOrder": "asc",
        "filters":
        [
            {
                "fieldName": "ticketAssignedToID",
                "operation": "blank"
            },
            {
                "fieldName": "departmentPrivate",
                "operation": "equals",
                "criteria": "No"
                
            },            {
                "fieldName": "ticketStatus",
                "operation": "notequal",
                "criteria": ["Deleted","Closed","Waiting for customer","Pending closure"]
                
            }


        ],
        "fields":
        [
           "ticketID",
           "agentName",
			"departmentName",
			"ticketSummary",
			"ticketStatus",
			"ticketPersonName",
			"ticketUpdatedDate",
			"ticketRead"
        ]
        
    }
    
}

supportTicketsSearchMyOpen

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"supportTickets",
    "objectAction":"search",
    "search":
    {
        "resultStart": "0",
        "resultLimit": "200",
        "resultSort": "ticketUpdatedDate",
        "resultOrder": "asc",
        "filters":
        [
            {
                "fieldName": "ticketAssignedToID",
                "operation": "equals",
                "criteria": "1"
            }, 
            {
                "fieldName": "ticketStatus",
                "operation": "equal",
                "criteria": ["Open","Waiting for support","Hold"]
                
            }


        ],
        "fields":
        [
           "ticketID",
           "agentName",
			"departmentName",
			"ticketSummary",
			"ticketStatus",
			"ticketPersonName",
			"ticketUpdatedDate",
			"ticketRead"
        ]
        
    }
    
}

view

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"supportTickets",
    "objectAction":"view",
    "values":
    [
        {
            "ticketID":"10526"
        }
    ],
    "fields":
    [
		"ticketSummary",
		"departmentName",
		"ticketPersonName",
		"ticketPersonEmail",
		"ticketStatus",
		"ticketDepartmentID",
		"ticketAccountNumber",
		"ticketFields",
		"ticketCreatedDate",
		"ticketUpdatedDate",
		"ticketAssignedToID",
		"ticketUserHistory",
		"ticketKey",
		"agentName"
	]
}

Anchor
testimonials
testimonials
testimonials

define

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"testimonials",
    "objectAction":"define"
}

...

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"users",
    "objectAction":"edit",
    "values":
    [
        {
            "userID": "855222",
			"userPassword": "testing",
			"userSalutation": "Mr.",
			"userFirstname": "Testy",
			"userLastname": "Person",
			"userAddress": "123 S.",
			"userCity": "Nowhere",
			"userState": "MO",
			"userPostalcode": "34341",
			"userPlus4": "1234",
			"userCountry": "United States",
			"userPhoneHome": "3018055081",
			"userPhoneWork": "3018055081",
			"userPhoneWorkExt": "123",
			"userPhoneCell": "3018055081",
			"userFax": "3018055081",
			"userEmail": "test@yahoo.com",
			"userEmailAlt": "",
			"userEmailPager": "",
			"userContactID": "{{contactID}}",
			"userType": "Volunteer"
        }
    ]
}

search

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"users",
    "objectAction":"search",
    "search":
    {
        "resultStart": "0",
        "resultLimit": "100",
        "resultSort": "userID",
        "resultOrder": "asc",
        "filters":
        [
            {
                "fieldName": "userID",
                "operation": "greaterthan",
                "criteria": "0"
                
            }
        ],
        "filterProcessing": "1",
        "fields": ["userID","userLogin","userSalutation","userName","userFirstname","userLastname","userAddress","userCity","userState","userPostalcode","userPlus4","userCountry","userPhoneHome","userPhoneWork","userPhoneWorkExt","userPhoneCell","userFax","userEmail","userEmailAlt","userEmailPager","userContactID","userRegisteredDate","userLastPasswordResetDate","userPasswordResetCount"]
    }
}

add

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"users",
    "objectAction":"add",
    "values":
    [
        {
			"userLogin": "test122343",
			"userPassword": "testing",
			"userSalutation": "Mr.",
			"userFirstname": "Testy",
			"userLastname": "Person",
			"userAddress": "123 S.",
			"userCity": "Nowhere",
			"userState": "MO",
			"userPostalcode": "34341",
			"userPlus4": "1234",
			"userCountry": "United States",
			"userPhoneHome": "3018055081",
			"userPhoneWork": "3018055081",
			"userPhoneWorkExt": "123",
			"userPhoneCell": "3018055081",
			"userFax": "3018055081",
			"userEmail": "test@yahoo.com",
			"userEmailAlt": "",
			"userEmailPager": "",
			"userContactID": "{{contactID}}",
			"userType": "Volunteer"
        }
    ]
}

view

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"users",
    "objectAction":"view",
    "values":
    [
        {
            "userID":"855211"
        }

    ],
    "fields":["userID","userLogin","userSalutation","userName","userFirstname","userLastname","userAddress","userCity","userState","userPostalcode","userPlus4","userCountry","userPhoneHome","userPhoneWork","userPhoneWorkExt","userPhoneCell","userFax","userEmail","userEmailAlt","userEmailPager","userContactID","userRegisteredDate","userLastPasswordResetDate","userPasswordResetCount"]
}

define

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"users",
    "objectAction":"define"
}

...

Anchor
volunteerHours
volunteerHours
volunteerHours

delete

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"volunteerHours",
    "objectAction":"delete",
    "values":
    [
        {
            "volunteerHoursID":"92"
        }
    ]
}

view

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"volunteerHours",
    "objectAction":"view",
    "values":
    [
        {
            "volunteerHoursID":"2"
        }

    ],
    "fields":["volunteerHoursID","volunteerHoursVolunteerID","volunteerHoursVolunteerDate","volunteerHoursCreatedDate","volunteerHoursVolunteerLength","volunteerHoursVolunteerTask","volunteerType"]
}

...

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"volunteerHours",
    "objectAction":"edit",
    "values":
    [
        {
            "volunteerHoursID": "92",
			"volunteerHoursVolunteerID": "{{contactID}}",
			"volunteerHoursVolunteerDate": "6/10/2015",
			"volunteerHoursVolunteerLength": "4",
			"volunteerHoursVolunteerTask": "Helping at adoption show"
        }
    ]
}

define

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"volunteerHours",
    "objectAction":"define"
}

add

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"volunteerHours",
    "objectAction":"add",
    "values":
    [
        {
			"volunteerHoursVolunteerID": "{{contactID}}",
			"volunteerHoursVolunteerDate": "6/10/2015",
			"volunteerHoursVolunteerLength": "4",
			"volunteerHoursVolunteerTask": "Helping at adoption show"
        }
    ]
}

search

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"volunteerHours",
    "objectAction":"search",
    "search":
    {
        "resultStart": "0",
        "resultLimit": "100",
        "resultSort": "volunteerHoursID",
        "resultOrder": "asc",
        "filters":
        [
            {
                "fieldName": "volunteerHoursID",
                "operation": "greaterthan",
                "criteria": "0"
                
            }
        ],
        "filterProcessing": "1",
        "fields": ["volunteerHoursID","volunteerHoursVolunteerID","volunteerHoursVolunteerDate","volunteerHoursCreatedDate","volunteerHoursVolunteerLength","volunteerHoursVolunteerTask","volunteerType"]
    }
}

Anchor
volunteersJournalEntries
volunteersJournalEntries
volunteersJournalEntries

define

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"volunteersJournalEntries",
    "objectAction":"define"
}

view

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"volunteersJournalEntries",
    "objectAction":"view",
    "values":
    [
        {
            "journalEntryID":"2"
        }

    ],
    "fields":["journalEntryID","journalEntryContactID","journalEntryDate","journalEntryComment","journalEntryType","volunteerName","volunteerType","journalEntryCreatedDate"]
}

delete

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"volunteersJournalEntries",
    "objectAction":"delete",
    "values":
    [
        {
            "journalEntryID":"2"
        }
    ]
}

search

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"volunteersJournalEntries",
    "objectAction":"search",
    "search":
    {
        "resultStart": "0",
        "resultLimit": "1",
        "resultSort": "journalEntryID",
        "resultOrder": "asc",
        "filters":
        [
            {
                "fieldName": "journalEntryID",
                "operation": "greaterthan",
                "criteria": "0"
                
            }
        ],
        "filterProcessing": "1",
        "fields": ["journalEntryID","journalEntryContactID","journalEntryDate","journalEntryComment","journalEntryType","volunteerName","volunteerType","journalEntryCreatedDate"]
    }
}

...

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"volunteersJournalEntries",
    "objectAction":"edit",
    "values":
    [
        {
            "journalEntryID": "2",
			"journalEntryContactID": "{{contactID}}",
			"journalEntryDate": "5/14/2015",
			"journalEntryComment": "It was tough work",
			"journalEntryType": "Help at the shelter"
        }
    ]
}

add

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"volunteersJournalEntries",
    "objectAction":"add",
    "values":
    [
        {
			"journalEntryContactID": "{{contactID}}",
			"journalEntryDate": "5/14/2015",
			"journalEntryComment": "It was tough work",
			"journalEntryType": "Help at the shelter"
        }
    ]
}

Anchor
waitinglists
waitinglists
waitinglists

add

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"waitinglists",
    "objectAction":"add",
    "values":
    [
        {
            "waitinglistName": "Testing add wl name",
			"waitinglistType": "Whatever",
			"waitinglistComment": "Waiting for everything in this world now a days"
        }
    ]
}

delete

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"waitinglists",
    "objectAction":"delete",
    "values":
    [
        {
            "waitinglistID":"42"
        }
    ]
}

search

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"waitinglists",
    "objectAction":"search",
    "search":
    {
        "resultStart": "0",
        "resultLimit": "100",
        "resultSort": "waitinglistID",
        "resultOrder": "asc",
        "filters":
        [
            {
                "fieldName": "waitinglistID",
                "operation": "greaterthan",
                "criteria": "0"
                
            }
        ],
        "filterProcessing": "1",
        "fields": ["waitinglistID","waitinglistName","waitinglistType","waitinglistComment","waitinglistMembersCount"]
    }
}

define

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"waitinglists",
    "objectAction":"define"
}

...

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"waitinglists",
    "objectAction":"edit",
    "values":
    [
        {
            "waitinglistID": "142",
            "waitinglistName": "Testing add wl name",
			"waitinglistType": "Whatever",
			"waitinglistComment": "Waiting for everything in this world now a days"
        }
    ]
}

view

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"waitinglists",
    "objectAction":"view",
    "values":
    [
        {
            "waitinglistID":"399"
        }

    ],
    "fields":["waitinglistID","waitinglistName","waitinglistType","waitinglistComment","waitinglistMembersCount"]
}

Anchor
webfiles
webfiles
webfiles

define

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"webfiles",
    "objectAction":"define"
}

...

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"webfiles",
    "objectAction":"edit",
    "values":
    [
        {
            "webfileID": "91",
			"webfileDescription": "Desc",
			"webfileStatus": "Deactivated",
			"webfileDisplayInline": "Yes",
			"webfileRoleID": "12"
        }
    ]
}

view

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"webfiles",
    "objectAction":"view",
    "values":
    [
        {
            "webfileID":"1"
        }

    ],
    "fields":["webfileID","webfileOldName","webfileName","webfileDescription","webfileStatus","webfileDisplayInline","webfileRoleID","webfileRoleName","webfileSize","webfileCreatedDate"]
}

search

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"webfiles",
    "objectAction":"search",
    "search":
    {
        "resultStart": "0",
        "resultLimit": "100",
        "resultSort": "webfileID",
        "resultOrder": "asc",
        "filters":
        [
            {
                "fieldName": "webfileID",
                "operation": "greaterthan",
                "criteria": "0"
                
            }
        ],
        "filterProcessing": "1",
        "fields": ["webfileID","webfileOldName","webfileName","webfileDescription","webfileStatus","webfileDisplayInline","webfileRoleID","webfileRoleName","webfileSize","webfileCreatedDate"]
    }
}

...

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"webfiles",
    "objectAction":"list"
}

add

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"webfiles",
    "objectAction":"add",
    "values":
    [
        {
            "webfileBinary": "VGhpcyBpcyBhIHRleHQgZmlsZSBmb3IgQVBJIHRlc3RpbmcuCg==",
			"webfileOldFileName": "test.txt",
			"webfileDescription": "Desc",
			"webfileStatus": "Activated",
			"webfileDisplayInline": "Yes",
			"webfileRoleID": "12"
        }
    ]
}

Anchor
webimages
webimages
webimages

delete

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"webimages",
    "objectAction":"delete",
    "values":
    [
        {
            "webimageID":"88"
        }

    ]
}

view

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"webimages",
    "objectAction":"view",
    "values":
    [
        {
            "webimageID":"2"
        }

    ],
    "fields": ["webimageID","webimageName","webimageFileName","webimageUrl","webimageSize","webimageWidth","webimageHeight"]
}

add

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"webimages",
    "objectAction":"add",
    "values":
    [
        {
            "webimageBinary": "",
			"webimageOldFileName": "test.jpg",
			"webimageName": "Desc"
        }
    ]
}

search

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"webimages",
    "objectAction":"search",
    "search":
    {
        "resultStart": "0",
        "resultLimit": "100",
        "resultSort": "webimageID",
        "resultOrder": "asc",
        "filters":
        [
            {
                "fieldName": "webimageID",
                "operation": "greaterthan",
                "criteria": "0"
                
            }
        ],
        "filterProcessing": "1",
        "fields": ["webimageID","webimageName","webimageFileName","webimageUrl","webimageSize","webimageWidth","webimageHeight"]
    }
}

...

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"webimages",
    "objectAction":"list"
}

define

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"webimages",
    "objectAction":"define"
}

...

Anchor
webpages
webpages
webpages

search

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"webpages",
    "objectAction":"search",
    "search":
    {
        "resultStart": "0",
        "resultLimit": "100",
        "resultSort": "webpageID",
        "resultOrder": "asc",
        "filters":
        [
            {
                "fieldName": "webpageID",
                "operation": "greaterthan",
                "criteria": "0"
                
            }
        ],
        "filterProcessing": "1",
        "fields": ["webpageID","webpageOrgID","webpageName","webpageContent","webpageStatus","webpageUselayout","webpageShowonmenu","webpageMetaDescription","webpageBackgroundImageID","webpageBackgroundImageFileName","webpageBackgroundMusicID","webpageBackgroundMusicFileName","webpageRoles","webpageRoleID"]
    }
}

view

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"webpages",
    "objectAction":"view",
    "values":
    [
        {
            "webpageID":"399"
        }

    ],
    "fields":["webpageID","webpageOrgID","webpageName","webpageContent","webpageStatus","webpageUselayout","webpageShowonmenu","webpageMetaDescription","webpageBackgroundImageID","webpageBackgroundImageFileName","webpageBackgroundMusicID","webpageBackgroundMusicFileName","webpageRoles","webpageRoleID"]
}

delete

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"webpages",
    "objectAction":"delete",
    "values":
    [
        {
            "groupID":"399"
        }
    ]
}

define

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"webpages",
    "objectAction":"define"
}

...

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"webpages",
    "objectAction":"edit",
    "values":
    [
        {
            "groupID":"399",
            "groupName":"Test Group Name26"
        }
    ]
}

add

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"webpages",
    "objectAction":"add",
    "values":
    [
        {
			"webpageName": "Test add",
			"webpageContent": "Test adding web page",
			"webpageStatus": "Active",
			"webpageUselayout": "Yes",
			"webpageShowonmenu": "Yes",
			"webpageMetaDescription": "Test adding web page (this is the meta desc)",
			"webpageBackgroundImageID": "",
			"webpageBackgroundMusicID": "",
			"webpageRoleID": "12"
        }
    ]
}

...

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"website",
    "objectAction":"updateSettings",
    "values":
    [
        {
			"enableAnimalAutoRescueID": "Yes"
        }
    ]
}

define

Code Block
{
    "token":"{{token}}",
    "tokenHash":"{{tokenHash}}",
    "objectType":"website",
    "objectAction":"define"
}

...