I could not figure out how to capture the AT result in MAIN so I had to place code within the command_dump function. I am no C coder so pardon the possibly poor code, but it works.
//Sends Temperature info
if ( strncmp(response->command.str, "TP", 2) == 0 )
{
//WORKS
memset(SendBuffer, 0, 100 * sizeof(SendBuffer[0]));
printf("\nAT Read: %s = %d\n", response->command.str, response->value_bytes[1] );
strcat(SendBuffer, "Temperature:");
sprintf(IntegerString, "%d", response->value_bytes[1]);
//sprintf(IntegerString, "%02x", response->value_bytes[1]);
strcat(SendBuffer, IntegerString);
env.payload = SendBuffer;
//printf("AT env.payload: %02x\n", env.payload );
env.length = strlen(SendBuffer);
//printf("AT env.length: %i\n\n", env.length );
//Sends data
xbee_transparent_serial(&env);
}