Eventbrite API ( Not receiving the info needed)

Hi All, I have been trying to use the API Call for Eventbrite

Created an API key and went through all the information as per their doc: Eventbrite for Developers - Eventbrite Platform

I am trying to get the information about the attendees if they have checked in. They should return a boolean or at least the info about the attendee

I am not getting any of the information that I want when I run the API. Not sure what I am doing wrong here.

Here is the Output:
image

[
    {
        "body": {
            "emails": [
                {
                    "email": "oa_eventbrite@mit.edu",
                    "verified": false,
                    "primary": true
                }
            ],
            "id": "1367003507",
            "name": "Lydia Brosnahan",
            "first_name": "Lydia",
            "last_name": "Brosnahan",
            "is_public": false,
            "image_id": null
        },
        "headers": {
            "content-type": "application/json",
            "transfer-encoding": "chunked",
            "connection": "close",
            "date": "Tue, 20 Aug 2024 21:41:36 GMT",
            "server": "nginx",
            "x-ua-compatible": "IE=edge",
            "referrer-policy": "strict-origin-when-cross-origin",
            "allow": "GET, POST, HEAD, OPTIONS",
            "x-content-type-options": "nosniff",
            "access-control-max-age": "600",
            "expires": "0",
            "vary": "Accept, Accept-Encoding",
            "x-xss-protection": "1; mode=block",
            "strict-transport-security": "max-age=63072000; includeSubDomains; preload",
            "x-rate-limit": "token:HDZJBHY5GFW4D4S465CX 7/2000 reset=2493s, key:45B27T7WW6JMDHXAEH 692/2000 reset=650s",
            "pragma": "no-cache",
            "cache-control": "no-cache, no-store, must-revalidate, max-age=0",
            "x-frame-options": "SAMEORIGIN",
            "access-control-allow-origin": "*",
            "access-control-allow-headers": "Authorization, Content-Type, Eventbrite-API-Waypoint-Token, Eventbrite-API-Deprecated-Features",
            "p3p": "CP=\"NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM\"",
            "x-permitted-cross-domain-policies": "none",
            "set-cookie": [
                "stableId=f83102e0-90fd-4f55-8617-6a2043da3805; Domain=.eventbriteapi.com; expires=Wed, 20-Aug-2025 21:41:36 GMT; Path=/; secure",
                "mgrefby=\"https://www.eventbriteapi.com/v3/users/me?token=HDZJBHY5GFW4D4S465CX\"; Domain=.eventbriteapi.com; expires=Wed, 20-Aug-2025 21:41:36 GMT; httponly; Max-Age=31536000; Path=/; secure",
                "G=v%3D2%26i%3D55bdb138-b733-4c8b-8508-e5c7e847db7f%26a%3D12fc%26s%3Dc220f9202d55de0a73c4ffed64f0a77fc82d344c; Domain=.eventbriteapi.com; expires=Wed, 20-Aug-2025 21:41:36 GMT; httponly; Path=/; secure",
                "ebEventToTrack=; Domain=.eventbrite.com; expires=Thu, 19-Sep-2024 21:41:36 GMT; httponly; Path=/; secure",
                "SS=AE3DLHRkL18fEUbf2jzXC1F8kRC0W0WZpg; Domain=.eventbriteapi.com; httponly; Path=/; secure",
                "eblang=lo%3Den_US%26la%3Den-us; Domain=.eventbriteapi.com; expires=Wed, 20-Aug-2025 21:41:36 GMT; httponly; Path=/; secure",
                "AN=; Domain=.eventbrite.com; expires=Thu, 19-Sep-2024 21:41:36 GMT; httponly; Path=/; secure",
                "AS=fc463a3b-2b0d-4846-beb2-23eb590670d1; Domain=.eventbriteapi.com; httponly; Path=/; secure",
                "mgref=refsites; Domain=.eventbriteapi.com; expires=Wed, 20-Aug-2025 21:41:36 GMT; httponly; Max-Age=31536000; Path=/; secure",
                "SP=AGQgbbkNaLC8bFNFb3PMiqFrmy5EjxryF_QX31Wv8u-ovjUj0vChCHberBlLHhx5U_EdKp00Umf9evM6vMOOUcf7vC20BJ1MZCdr0aafX1bdxEbYbu5PRaGrleOJqamVE01UHw942p1vY99syvIFnZgNlrPCdq94M99suRgr8NZNm51KgP8SdOlXdVALLDn0B9TtFRFA1O_4lArqLRLqkue3T_zo8ROwAaqqbVZXxJsaVOYrJCRRPoM; Domain=.eventbriteapi.com; httponly; Path=/; secure"
            ],
            "x-cache": "Miss from cloudfront",
            "via": "1.1 25e2963eb5d8a7965bc8b98c455aab48.cloudfront.net (CloudFront)",
            "x-amz-cf-pop": "IAD66-C2",
            "x-amz-cf-id": "nc4Mita2FNYFzuxAQgv25TCa3kcLdQc3w7_V8ZcK2l-0YnJcNHeL4g=="
        },
        "statusCode": 200
    }
]

Looks like you are inserting the API endpoint URL in the wrong place.

Hope this helps! Let me know if there are any further questions or issues.

@samliew


P.S.: Did you know, the concepts of about 70% of questions asked on this forum are already covered in the Make Academy. Investing some effort into it will save you lots of time and frustration using Make later!

Thank you @samliew , However that change creates an error

[
    null
]

It looks correct now, as per documentation.

Maybe it’s a bug?

@samliew So ho do I report that bug to Make ?

You have a double slash at the end of your URL, it should only be a single slash

image

Good catch, it looks like you don’t even have the attendee ID in the variable.