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
  • I've put quotes around it, and still no luck

    	    	jQuery.telligent.evolution.put({
    	            url: jQuery.telligent.evolution.site.getBaseUrl() + 'api.ashx/v2/calendars/events/{id}.json',
    	            data: { 
    		            'id': response.eventId,
                        '__ExtendedAttributes_PostingStatus': context.status,
    		            '__ExtendedAttributes_PostingEndDate': "Test"  //t$(context.inputs.postingEndDate).val()
    
                	 },
    	            success: function(response) {
                        alert('success'+response);
    	            }
            });

Children