To keep things short and sweet, is there a way you can you create a TXT Record through the WAPI with text greater than 255 bytes? I have tried a few things with no luck. Here is what documentation suggests:
"Text associated with the record. It can contain up to 255 bytes per substring, up to a total of 512 bytes"
Here is what my curl request looks like when creating the txt record:
curl -k -u admin:infoblox -H "Content-Type: application/json" -X POST https://10.10.30.100/wapi/v1.4.2/record:txt -d '{
"name": "mytxtrecord.domain.com",
"text": "v=DKIM1;k=rsa;p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA9x2BTzs5hCrx2CR1sX9pHxFKFo1VR/ivJ6...",
"ttl": 28800,
"view": "internal"
}'
Any help would be much appreciated! Thanks