Skip to main content
Version: 6.0.0

GetFunctionList

public BackndReturnObject GetFunctionList();

Description

Looks up the list of BACKND functions deployed in the server.

Example

Synchronous

Backnd.Function.GetFunctionList();

Asynchronous

Backnd.Function.GetFunctionList((callback) =>
{
// Post-process
});

Return casess

Success cases

When the lookup is successful
statusCode : 200
errorCode : Success returnValue : { functions : ['funcA', 'funcB', ...] }

When the lookup is successful but the method list does not exist
statusCode : 200
errorCode : Success returnValue : { functions : [] }

Error cases

When an incorrect BACKND Function authorization key is entered in Unity
statusCode : 401
errorCode : BadUnauthorizedException