function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Urvish ShahUrvish Shah 

Eventbrite APIv3 issue with creating an event

I have conncted Eventbrite module and Volunteer for salesforce module.
I post an event on eventbrite and publish it using its APIv3 and sync it back to the salesforce to make it appear in the campaign object.

I want to send an event type with the event request for which the parameter is "event.format_id" as explained in the documentation.
The problem is when I execute it, it gives me an error for "event.format_id Invalid".

Here is the line of code where I send a request with required parameters.
req.setBody('event.format_id=' + type +'&event.end.timezone=' + event.TimeZone__c +'&event.listed=true&event.currency=USD&event.capacity=100&event.show_remaining=true&event.end.utc=' + etime+'&event.start.timezone=' + event.TimeZone__c +'&event.name.html=' + event.EventName__c +'&event.start.utc=' + stime+'');

Any solition will be appreciated.
Thank you,