estoy implementando una interfaz con una API de un proveedor de envio de mensajes de texto, hasta el momento ya me envia los mensajes de texto exitosamente y el servdor me esta dando respuesta,
la documentacion del api es este:
Código PHP:
Ver original
$deliveryId = $elibom->sendMessage('3099576542','SISTEMAS TEST'); //Return json object $delivery = $elibom->getDelivery($deliveryId);
pero me imprime esto en pantalla., mi pregunta es como puedo organizarlo en un array para disponer a mi manera de los campos que me devuelve.
por ejemplo quiero obtener el valor de ["statusDetail"]=>
Código Javascript:
Ver original
object(stdClass)#3 (5) { ["deliveryId"]=> string(19) "12367408420037" ["status"]=> string(8) "finished" ["numSent"]=> int(0) ["numFailed"]=> int(1) ["messages"]=> array(1) { [0]=> object(stdClass)#5 (10) { ["id"]=> int(244297214) ["user"]=> object(stdClass)#6 (2) { ["id"]=> int(127) ["url"]=> string(34) "https://www.elibom.com/users/12367" } ["to"]=> string(9) "301576542" ["operator"]=> string(0) "" ["text"]=> string(13) "SISTEMAS TEST" ["status"]=> string(6) "failed" ["statusDetail"]=> string(19) "invalid_destination" ["credits"]=> int(0) ["from"]=> string(0) "" ["createdAt"]=> string(19) "2015-05-27 15:13:55" } } }