Updating the ExtendedAttributes for a calendar event

How do you update a calendar event's extended attributes in Velocity and/or REST API? It doesn't seem to be updating, and the documentation says it is read-only.

Parents Reply
  • The REST API is not updating the ExtendedAttributes. the following code updates the EventTitle and EventDescription, but not the ExtendedAttributes:

    	    	jQuery.telligent.evolution.put({
    	            url: jQuery.telligent.evolution.site.getBaseUrl() + 'api.ashx/v2/calendars/events/{id}.json',
    	            data: { 
    		            'id': response.eventId,
    		            'EventTitle': 'eventtitle',
    		            'EventDescription': 'eventdescription',
    		            '_ExtendedAttributes_PostingEndDate': 'test' //$(context.inputs.postingEndDate).val(),
    
                	 },
    	            success: function(response) {
                        alert('success'+response);
    	            }
            });

    I also came across a previous forum post by someone that had a similar problem.

Children