Hi Team,
I’m working Hubspot API, got one issue while creating Hubspot CRM Extension as shown in below attachment.
and Passing JSON as below:
{
"applicationId": 207191,
"baseUris": [
"https://example.com/actions"
],
"dataFetchUri": "https://example.com/demo-tickets",
"title": "DemoTickets",
"propertyDefinitions": [
{
"name": "ticket_type",
"label": "Ticket type",
"dataType": "STRING"
},
{
"options": [
{
"type": "SUCCESS",
"label": "In Progress",
"name": "inprogress"
},
{
"type": "DEFAULT",
"label": "Resolved",
"name": "resolved"
}
],
"name": "status",
"label": "Status",
"dataType": "STATUS"
},
{
"name": "priority",
"label": "Priority",
"dataType": "STRING"
},
{
"name": "project",
"label": "Project",
"dataType": "STRING"
}
],
"associatedHubSpotObjectTypes": [
"DEAL"
],
"associatedHubSpotObjectTypeProperties": {
}
}
And can you please elaborate below properties:
- baseUris
- dataFetchUri
How its work with extension?
