program_get_invitation (session, program {, version=null})
Generates a SHARED KEY OBJECT that can be used as an invitation to a PROGRAM. The shared key generated is an encrypted string that can be used in account_create() or in session_init(). When a user creates a new account (via account_create() ) or logs in the system (via session_init() ) indicating the invitation shared key, a new SUBSCRIPTION to the PROGRAM will be generated. The SUBSCRIPTION will belong to a private TEAM of the USER. This means that only that USER will be able to create new ADMISSIONS in that SUBSCRIPTION | |
Input parameters: |
|
Output parameters: |
|
Request sample: | program_get_invitation ( “LCAAAAAAAAAAAA”, 12); |
Response sample: | <?xml version="1.0" encoding="utf-8" standalone="yes"?> <result>7aadshas7duihqovsn8</result> <ErrorMsg></ErrorMsg> <ErrorCode></ErrorCode> |
Notes: | Currently it is not possible to create new accounts 'from scratch'. It is necessary that the account has been pre-created by adding a CASE , USER or ASSOCIATE |
Return Error codes
ERROR CODE | |
---|---|
INVALID_TOKEN | The session token provided is not valid |
PROGRAM.NOT_FOUND | The specified PROGRAM does not exist |
INSUFFICIENT_PRIVILEGES | The account already exists and the verification is pending. In this case, the shared key necessary to validate the account is also returned in the response |