Can't choose what attributes get outputted

Describe the problem/error/question

I’m trying to read a list i have on my Attio CRM and output a person’s first name, last name, their university and their linkedin url (only for those that were added in the last 7 days), all available on the list i created on attio.

In the jSON body of my HTTP request, for some reason it pulls ALL the information in the list instead of just the attributes I’m asking for and the timeline I’m asking for. I tested asking it to output first name only and it still gave me the entire list.

What is the error message (if any)?

No error message

Please share your workflow

{
“nodes”: [
{
“parameters”: {
“rule”: {
“interval”: [
{
“field”: “weeks”,
“triggerAtDay”: [
1
],
“triggerAtHour”: 8,
“triggerAtMinute”: 30
}
]
}
},
“type”: “n8n-nodes-base.scheduleTrigger”,
“typeVersion”: 1.2,
“position”: [
0,
0
],
“id”: “aaac0706-5f79-434a-a395-c418cb686102”,
“name”: “Schedule Trigger”
},
{
“parameters”: {
“method”: “POST”,
“url”: “https://api.attio.com/v2/objects/people/records/query”,
“authentication”: “genericCredentialType”,
“genericAuthType”: “httpHeaderAuth”,
“sendBody”: true,
“specifyBody”: “json”,
“jsonBody”: “={\n "attributes": [\n "first_name"\n ]\n}”,
“options”: {}
},
“type”: “n8n-nodes-base.httpRequest”,
“typeVersion”: 4.2,
“position”: [
208,
0
],
“id”: “//REMOVED FOR PRIVACY//”,
“name”: “HTTP Request”,
“credentials”: {
“httpBearerAuth”: {
“id”: “eroieqsLxE9T4d6M”,
“name”: “Bearer Auth account”
},
“httpHeaderAuth”: {
“id”: “hPcMiaJASVI0QINd”,
“name”: “Header Auth account”
}
}
},
{
“parameters”: {
“sendTo”: “//REMOVED FOR PRIVACY//”,
“options”: {}
},
“type”: “n8n-nodes-base.gmail”,
“typeVersion”: 2.1,
“position”: [
416,
0
],
“id”: “b98f61ab-6b12-4334-9b79-3ffcb198ecfc”,
“name”: “Send a message”,
“webhookId”: “dca7f392-5dc3-4177-baf7-4a05500b71e9”,
“credentials”: {
“gmailOAuth2”: {
“id”: “W1dz6EvXBOJaSwBJ”,
“name”: “Gmail account”
}
}
}
],
“connections”: {
“Schedule Trigger”: {
“main”: [
[
{
“node”: “HTTP Request”,
“type”: “main”,
“index”: 0
}
]
]
},
“HTTP Request”: {
“main”: [
[
{
“node”: “Send a message”,
“type”: “main”,
“index”: 0
}
]
]
}
},
“pinData”: {},
“meta”: {
“templateCredsSetupCompleted”: true,
“instanceId”: “45f08d58ef433578544212730830cd3c8c2cbde37f30e24acd0f34f1691aa7bc”
}
}

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.