en un clic
hubspot
Manage HubSpot CRM — contacts, companies, deals, tickets
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Manage HubSpot CRM — contacts, companies, deals, tickets
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
Google Calendar — list, create, and manage events via gcal CLI
Manage Shopify store — products, orders, customers, inventory
Configure audio transcription and image/video understanding for channels
AWS CLI for S3, EC2, Lambda, CloudWatch, RDS, and ECS
Google Calendar — list, create, and manage events via gcal CLI
Google Cloud CLI for Compute, Cloud Run, GCS, and BigQuery
| name | hubspot |
| version | 0.1.0 |
| author | devclaw |
| description | Manage HubSpot CRM — contacts, companies, deals, tickets |
| category | integrations |
| tags | ["hubspot","crm","contacts","deals","companies","marketing","sales"] |
| requires | {"env":["HUBSPOT_ACCESS_TOKEN"]} |
Manage HubSpot CRM via the REST API v3.
crm.objects.contacts.read, crm.objects.contacts.write, crm.objects.companies.read, crm.objects.companies.write, crm.objects.deals.read, crm.objects.deals.write, contentcopilot config vault-set HUBSPOT_ACCESS_TOKEN=pat-na1-xxxxx
curl -s "https://api.hubapi.com/crm/v3/objects/contacts?limit=10&properties=firstname,lastname,email,phone,company" \
-H "Authorization: Bearer $HUBSPOT_ACCESS_TOKEN" | jq '.results[] | {id, properties}'
curl -s -X POST "https://api.hubapi.com/crm/v3/objects/contacts/search" \
-H "Authorization: Bearer $HUBSPOT_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"filterGroups": [{"filters": [{"propertyName": "email", "operator": "CONTAINS_TOKEN", "value": "example.com"}]}],
"properties": ["firstname", "lastname", "email", "phone"],
"limit": 10
}' | jq '.results[] | {id, properties}'
curl -s -X POST "https://api.hubapi.com/crm/v3/objects/contacts" \
-H "Authorization: Bearer $HUBSPOT_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"properties": {
"email": "contact@example.com",
"firstname": "John",
"lastname": "Doe",
"phone": "+5511999999999",
"company": "Company Name"
}
}' | jq '{id, properties}'
curl -s -X PATCH "https://api.hubapi.com/crm/v3/objects/contacts/CONTACT_ID" \
-H "Authorization: Bearer $HUBSPOT_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"properties": {"phone": "+5511888888888"}}' | jq '{id, properties}'
curl -s "https://api.hubapi.com/crm/v3/objects/companies?limit=10&properties=name,domain,industry,city,phone" \
-H "Authorization: Bearer $HUBSPOT_ACCESS_TOKEN" | jq '.results[] | {id, properties}'
curl -s -X POST "https://api.hubapi.com/crm/v3/objects/companies" \
-H "Authorization: Bearer $HUBSPOT_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"properties": {
"name": "Company Name",
"domain": "company.com",
"industry": "TECHNOLOGY",
"city": "São Paulo",
"phone": "+551130000000"
}
}' | jq '{id, properties}'
curl -s "https://api.hubapi.com/crm/v3/objects/deals?limit=10&properties=dealname,amount,dealstage,closedate,pipeline" \
-H "Authorization: Bearer $HUBSPOT_ACCESS_TOKEN" | jq '.results[] | {id, properties}'
curl -s -X POST "https://api.hubapi.com/crm/v3/objects/deals" \
-H "Authorization: Bearer $HUBSPOT_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"properties": {
"dealname": "Deal Name",
"amount": "10000",
"dealstage": "qualifiedtobuy",
"pipeline": "default",
"closedate": "2026-03-31"
}
}' | jq '{id, properties}'
curl -s "https://api.hubapi.com/crm/v3/objects/tickets?limit=10&properties=subject,content,hs_pipeline_stage,hs_ticket_priority" \
-H "Authorization: Bearer $HUBSPOT_ACCESS_TOKEN" | jq '.results[] | {id, properties}'
# Associate contact with company
curl -s -X PUT "https://api.hubapi.com/crm/v3/objects/contacts/CONTACT_ID/associations/companies/COMPANY_ID/contact_to_company" \
-H "Authorization: Bearer $HUBSPOT_ACCESS_TOKEN"
curl -s "https://api.hubapi.com/crm/v3/pipelines/deals" \
-H "Authorization: Bearer $HUBSPOT_ACCESS_TOKEN" | jq '.results[] | {id, label, stages: [.stages[] | {id, label}]}'
?properties= parameterhubspot, crm, contato, contact, empresa, company, negócio, deal, ticket, pipeline, lead