Updating the ExtendedAttributes for a calendar event

Former Member
Former Member

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
  • Former Member
    0 Former Member in reply to Former Member

    I tried this, and it still didn't work:

    	    	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