update
Update a LAML bin’s content or name. Uses POST (Twilio convention).
Update a LAML bin’s content or name. Uses POST (Twilio convention).
1 from signalwire.rest import RestClient 2 3 client = RestClient( 4 project="your-project-id", 5 token="your-api-token", 6 host="your-space.signalwire.com", 7 ) 8 9 client.compat.laml_bins.update( 10 "LB...", 11 Name="Greeting", 12 Contents=( 13 '<?xml version="1.0" encoding="UTF-8"?>' 14 "<Response><Say>Goodbye!</Say></Response>" 15 ) 16 )