Sires
Sales
Contact
Registrations
Properties

RegistrationID: Auto generated Unique ID for the registration.

RegistrationNumber: An auto generated number from the association.

RegistrationName: Required field describing the registration name.

RegistrationGender: Gender contains three options - M = Male | F = Female | U = Unknown.

RegistrationSpecies: BV = Bovine.

GET
await fetch('https://{{Association Code}}.herdlogic.com/v1/registration/get',
{
    body: JSON.stringify({
        RegistrationID: '{{Registration ID or Number}}',
    }),
    method: 'POST',
    headers: {
            'Content-Type': 'application/json',
            'authorization': '{{Access Token - Optional}}',
        }
    }
);