Type : GENERATION_INTERNE_ET_EXTERNE
El cuerpo de la solicitud POST se define internamente en el script. La respuesta (datos JSON) se recibe de un servicio web externo (`httpbin.org`).
| 1 | filename resp temp; |
| 2 | PROC HTTP |
| 3 | url="http://httpbin.org/post" |
| 4 | method="POST" |
| 5 | in="custname=Joe%str(&)size=large%str(&)topping=cheese" |
| 6 | out=resp; |
| 7 | RUN; |
| 1 | DATA _null_; |
| 2 | rc = jsonpp('resp','log'); |
| 3 | RUN; |