API V8 Relationship Question

Hi,

Im trying to get the following to work, but whatever I try nothing

The Read Example is:

GET /api/v8/modules/{module}/{id}/relationships/{link}

my version of this is:

/api/v8/modules/Accounts/64cc4b26-6c99-63c7-082d-5ab32a1f2390/relationships/Contacts

This is based off the example links provided here:

http://jsonapi.org/format/1.0/#fetching-relationships

I know this account has at least one related contact record linked.

It keeps returning:


{
    "errors": [
        {
            "code": 8045,
            "title": "[SuiteCRM] [API] [Not Found] [ModuleController] [Relationship does not exist] Contacts",
            "detail": "",
            "source": {
                "pointer": ""
            },
            "status": 404
        }
    ],
    "meta": {
        "suiteapi": {
            "major": 8,
            "minor": 0,
            "patch": 0,
            "stability": "ALPHA"
        }
    },
    "jsonapi": {
        "version": "1.0"
    }
}

I found the issue

This:

/api/v8/modules/Accounts/64cc4b26-6c99-63c7-082d-5ab32a1f2390/relationships/Contacts

Needs to be this: note contacts is lower case

/api/v8/modules/Accounts/64cc4b26-6c99-63c7-082d-5ab32a1f2390/relationships/contacts