[Index]
Multi Vendor Subscriber Edit Relation
Model ref.: relation/MultiVendorSubscriber
The full URL would include the host-proxy name: https://[host-proxy].
Variables are enclosed in square brackets.
{
"$schema": "http://json-schema.org/draft-03/schema",
"type": "object",
"properties": {
"username": {
"title": "User Name",
"description": "User's Username.",
"type": "string",
"required": true
},
"email": {
"title": "Email Address",
"description": "The User email address.",
"type": "string",
"required": false
},
"first_name": {
"title": "First Name",
"description": "The User first name.",
"type": "string"
},
"last_name": {
"title": "Last Name",
"description": "The User last name.",
"type": "string"
},
"password": {
"title": "Local Password",
"description": "The User password.",
"type": "string",
"is_password": true,
"pattern": ".{8,}",
"store_encrypted": true
},
"role": {
"title": "Role",
"description": "The role to which the user belongs. See: Role.",
"type": "string",
"format": "uri",
"required": true,
"target": "/api/data/Role/choices/?field=name&format=json&hierarchy=[hierarchy]&auth_token=[authtoken],
"target_attr": "name",
"target_model_type": "data/Role",
"choices": []
},
"language": {
"title": "Language",
"description": "The preferred language for this user.",
"type": "string",
"format": "uri",
"required": false,
"target": "/api/data/Language/choices/?field=lcid&format=json&hierarchy=[hierarchy]&auth_token=[authtoken],
"target_attr": "lcid",
"default": "en-us",
"target_model_type": "data/Language",
"choices": []
},
"set_language": {
"title": "Set by Default Language",
"description": "Indicate if the user's language is set by language default in the hierarchy.",
"type": "boolean",
"required": false,
"default": false
},
"account_information": {
"title": "Account Information",
"description": "Additional account information for the given user.",
"type": "object",
"required": false,
"properties": {
"change_password_on_login": {
"title": "Change Password on Next Login",
"description": "Indicates if the user must be forced to change their password the next time that login.",
"type": "boolean",
"required": false
},
"locked": {
"title": "Locked",
"description": "Indicates if the account has been locked to prevent the user from logging in.",
"type": "boolean",
"required": false
},
"disabled": {
"title": "Disabled",
"description": "Indicates if the account has been disabled to prevent the user from logging in until an administrator enables the account again.",
"type": "boolean",
"required": false
},
"reason_for_disabled": {
"title": "Reason for Disabled",
"description": "A description of why the account is disabled.",
"type": "string",
"required": false
},
"credential_policy": {
"title": "Credential Policy",
"description": "Specifies the policy with the rules used to govern this user's credentials.",
"type": "string",
"format": "uri",
"required": false,
"target": "/api/data/CredentialPolicy/choices/?field=name&format=json&hierarchy=[hierarchy]&auth_token=[authtoken],
"target_attr": "name",
"target_model_type": "data/CredentialPolicy",
"choices": []
},
"failed_login_lock_date": {
"title": "Time Locked Due to Failed Login Attempts",
"description": "The time when the user account was locked as result of the number of failed login attempts exceeding the permitted thresholds.",
"type": "string",
"format": "date-time",
"required": false
},
"password_last_change_time": {
"title": "Time of Last Password Change",
"description": "The time when the password was last changed.",
"type": "string",
"format": "date-time",
"required": false,
"readonly": true
},
"password_last_change_time_by_user": {
"title": "Time of Last Password Change By User",
"description": "The time when the password was last changed by the user.",
"type": "string",
"format": "date-time",
"required": false,
"readonly": true
},
"last_login_time": {
"title": "Time of Last Successful Login",
"description": "The time the user last logged in successfully.",
"type": "string",
"format": "date-time",
"required": false,
"readonly": true
},
"num_of_failed_login_attempts": {
"title": "Number of Failed Login Attempts Since Last Successful Login",
"description": "The total number of failed login attempts since last successful login.",
"type": "integer",
"required": false,
"default": "0"
},
"security_questions": {
"title": "Security Questions",
"type": "array",
"items": {
"type": "object",
"properties": {
"question": {
"title": "Question",
"type": "string",
"maxLength": 128,
"required": true,
"displayable": true
},
"answer": {
"title": "Answer",
"type": "string",
"maxLength": 128,
"required": true
}
}
}
},
"used_passwords": {
"title": "Used Passwords",
"description": "List of passwords that have been used by user.",
"type": "array",
"items": {
"type": "object",
"properties": {
"password": {
"title": "Password",
"description": "Used password",
"type": "string"
},
"time_created": {
"title": "Time Created",
"description": "Time when password was created.",
"type": "string"
}
}
}
}
}
},
"entitlement_profile": {
"title": "Entitlement Profile",
"type": "string",
"maxLength": 1024,
"format": "uri",
"required": false,
"readonly": false,
"is_password": false,
"displayable": false,
"target": "/api/data/HcsEntitlementProfileDAT/choices/?format=json&hierarchy=[hierarchy]&auth_token=[authtoken],
"target_model_type": "data/HcsEntitlementProfileDAT",
"choices": []
},
"sync_source": {
"title": "Sync Source",
"description": "Sync source of the user. Identifies where the user was synced from. This value will determine the master of the data. The data in the User model will be derived from the fields of the master application (E.G. CUCM, CUC, MS-LDAP).",
"type": "string",
"format": "uri",
"target": "/api/data/UserSyncSource/choices/?field=name&format=json&hierarchy=[hierarchy]&auth_token=[authtoken],
"target_attr": "name",
"default": "LOCAL",
"target_model_type": "data/UserSyncSource",
"choices": []
},
"sync_type": {
"title": "Sync Type",
"description": "Sync type of the user. Identifies the user type that was synced from device as indicated by Sync Source information, e.g. CUCM-Local, CUCM-LDAP, LOCAL.",
"type": "string",
"default": "LOCAL"
},
"building_name": {
"title": "Building Name",
"description": "Building name or number.",
"type": "string"
},
"country": {
"title": "Country",
"description": "Country name.",
"type": "string"
},
"department": {
"title": "Department",
"description": "Department names and numbers.",
"type": "string"
},
"directory_uri": {
"title": "Directory URI",
"description": "Alphanumeric Directory URI (e.g. SIP URI)",
"type": "string"
},
"display_name": {
"title": "Display Name",
"description": "Display name of the user",
"type": "string"
},
"employee_number": {
"title": "Employee Number",
"description": "Employee number of the user",
"type": "string"
},
"employee_type": {
"title": "Employee Type",
"description": "Employee type",
"type": "string"
},
"facsimile_telephone_number": {
"title": "Facsimile Telephone Number",
"description": "Contains strings that represent the user's facsimile telephone Number(s).",
"type": "array",
"items": {
"type": "string"
}
},
"home_phone": {
"title": "Home Phone",
"description": "Contains strings that represent the user's home phone number(s).",
"type": "array",
"items": {
"type": "string"
}
},
"ip_phone": {
"title": "IP Phone",
"description": "Contains strings that represent the user's IP phone number(s).",
"type": "array",
"items": {
"type": "string"
}
},
"jabber_id": {
"title": "Jabber ID",
"description": "Jabber ID",
"type": "string"
},
"city": {
"title": "City",
"description": "Contains the name of a person's locality.",
"type": "string"
},
"manager": {
"title": "Manager",
"description": "Manager.",
"type": "string"
},
"member_of": {
"title": "Member Of",
"description": "The user can be a member of a variety of groups.",
"type": "array",
"items": {
"type": "string"
}
},
"mobile": {
"title": "Mobile",
"description": "Contains strings that represent the user's IP mobile number(s).",
"type": "array",
"items": {
"type": "string"
}
},
"organization": {
"title": "Organization",
"description": "The name of the person's organization.",
"type": "string"
},
"object_class": {
"title": "Object Class",
"type": "array",
"minItems": 0,
"items": {
"type": "string",
"is_password": false
}
},
"other_mailbox": {
"title": "Other Mailbox",
"type": "array",
"minItems": 0,
"items": {
"type": "string",
"is_password": false
}
},
"ou": {
"title": "Organizational Unit",
"description": "The name of the person's organization unit.",
"type": "array",
"minItems": 0,
"items": {
"type": "string",
"is_password": false
}
},
"photo_url": {
"title": "Photo URL",
"description": "Photo URL.",
"type": "string"
},
"physical_delivery_office_name": {
"title": "Physical Delivery Office Name",
"description": "Physical Delivery Office Name.",
"type": "string"
},
"postal_code": {
"title": "Postal Code",
"description": "Contains code used by a Postal Service to identify postal service zones.",
"type": "string"
},
"preferred_language": {
"title": "Preferred Language",
"description": "Preferred Language.",
"type": "string"
},
"state": {
"title": "State",
"description": "Contains full names of state or province.",
"type": "string"
},
"street": {
"title": "Street",
"description": "Contains site information from a postal address.",
"type": "string"
},
"telephone_number": {
"title": "Telephone Number",
"description": "Telephone Number.",
"type": "array",
"items": {
"type": "string"
}
},
"timezone": {
"title": "Timezone",
"description": "Timezone.",
"type": "string"
},
"title": {
"title": "Title",
"description": "Title.",
"type": "string"
},
"unverified_mailbox": {
"title": "Unverified Mail Box",
"description": "Unverified Mail Box.",
"type": "string"
},
"customString1": {
"title": "Custom String 1",
"description": "Custom String",
"type": "string"
},
"customString2": {
"title": "Custom String 2",
"description": "Custom String",
"type": "string"
},
"customString3": {
"title": "Custom String 3",
"description": "Custom String",
"type": "string"
},
"customString4": {
"title": "Custom String 4",
"description": "Custom String",
"type": "string"
},
"customString5": {
"title": "Custom String 5",
"description": "Custom String",
"type": "string"
},
"customString6": {
"title": "Custom String 6",
"description": "Custom String",
"type": "string"
},
"customString7": {
"title": "Custom String 7",
"description": "Custom String",
"type": "string"
},
"customString8": {
"title": "Custom String 8",
"description": "Custom String",
"type": "string"
},
"customString9": {
"title": "Custom String 9",
"description": "Custom String",
"type": "string"
},
"customString10": {
"title": "Custom String 10",
"description": "Custom String",
"type": "string"
},
"customListOfStrings1": {
"title": "Custom List of Strings 1",
"description": "Custom List of Strings",
"type": "array",
"items": {
"type": "string"
}
},
"customListOfStrings2": {
"title": "Custom List of Strings 2",
"description": "Custom List of Strings",
"type": "array",
"items": {
"type": "string"
}
},
"customListOfStrings3": {
"title": "Custom List of Strings 3",
"description": "Custom List of Strings",
"type": "array",
"items": {
"type": "string"
}
},
"customListOfStrings4": {
"title": "Custom List of Strings 4",
"description": "Custom List of Strings",
"type": "array",
"items": {
"type": "string"
}
},
"customListOfStrings5": {
"title": "Custom List of Strings 5",
"description": "Custom List of Strings",
"type": "array",
"items": {
"type": "string"
}
},
"customListOfStrings6": {
"title": "Custom List of Strings 6",
"description": "Custom List of Strings",
"type": "array",
"items": {
"type": "string"
}
},
"customListOfStrings7": {
"title": "Custom List of Strings 7",
"description": "Custom List of Strings",
"type": "array",
"items": {
"type": "string"
}
},
"customListOfStrings8": {
"title": "Custom List of Strings 8",
"description": "Custom List of Strings",
"type": "array",
"items": {
"type": "string"
}
},
"customListOfStrings9": {
"title": "Custom List of Strings 9",
"description": "Custom List of Strings",
"type": "array",
"items": {
"type": "string"
}
},
"customListOfStrings10": {
"title": "Custom List of Strings 10",
"description": "Custom List of Strings",
"type": "array",
"items": {
"type": "string"
}
},
"customBoolean1": {
"title": "Custom Boolean 1",
"description": "Custom Boolean",
"type": "boolean"
},
"customBoolean2": {
"title": "Custom Boolean 2",
"description": "Custom Boolean",
"type": "boolean"
},
"customBoolean3": {
"title": "Custom Boolean 3",
"description": "Custom Boolean",
"type": "boolean"
},
"customBoolean4": {
"title": "Custom Boolean 4",
"description": "Custom Boolean",
"type": "boolean"
},
"customBoolean5": {
"title": "Custom Boolean 5",
"description": "Custom Boolean",
"type": "boolean"
},
"customBoolean6": {
"title": "Custom Boolean 6",
"description": "Custom Boolean",
"type": "boolean"
},
"customBoolean7": {
"title": "Custom Boolean 7",
"description": "Custom Boolean",
"type": "boolean"
},
"customBoolean8": {
"title": "Custom Boolean 8",
"description": "Custom Boolean",
"type": "boolean"
},
"customBoolean9": {
"title": "Custom Boolean 9",
"description": "Custom Boolean",
"type": "boolean"
},
"customBoolean10": {
"title": "Custom Boolean 10",
"description": "Custom Boolean",
"type": "boolean"
},
"auth_method": {
"title": "Auth Method",
"description": "The type of authentication that our user would be using. Typically this would be choices between a Standard VOSS 4 UC user, an LDAP user or an SSO user.",
"type": "string",
"default": "Local",
"choices": [
{
"value": "Local",
"title": "Local"
},
{
"value": "Automatic",
"title": "Automatic"
},
{
"value": "LDAP",
"title": "LDAP"
},
{
"value": "SSO",
"title": "SSO"
}
]
},
"ldap_server": {
"title": "LDAP Server",
"description": "A reference to the LDAP server which this user must authenticate against.",
"type": "string",
"format": "uri",
"required": false,
"target": "/api/data/Ldap/choices/?format=json&hierarchy=[hierarchy]&auth_token=[authtoken],
"target_model_type": "data/Ldap",
"choices": []
},
"ldap_username": {
"title": "LDAP Username",
"description": "The login attribute of the associated LDAP device model instance",
"type": "string"
},
"sso_idp": {
"title": "SSO Identity Provider",
"description": "The entity id of the SSO Identity Provider.",
"type": "string",
"format": "uri",
"required": false,
"target": "/api/data/SsoIdentityProvider/choices/?field=entity_id&format=json&hierarchy=[hierarchy]&auth_token=[authtoken],
"target_attr": "entity_id",
"target_model_type": "data/SsoIdentityProvider",
"choices": []
},
"sso_username": {
"title": "SSO Username",
"description": "The name identifier that is used for an SSO authenticated user.",
"type": "string",
"required": false
},
"user_type": {
"title": "User Type",
"description": "Indicate the user's login type.",
"type": "string",
"required": false,
"default": "Admin",
"choices": [
{
"value": "Admin",
"title": "Admin"
},
{
"value": "End User",
"title": "End User"
},
{
"value": "End User + Admin",
"title": "End User + Admin"
}
]
},
"exclude_from_directory": {
"title": "Exclude from Directory",
"description": "Exclude from Directory flag to control the Phone Services directory lookup. If set to true the User's phone number will not appear in the directory lookup.",
"type": "boolean"
},
"mvs_hybrid_status": {
"title": "Hybrid Status",
"type": "string",
"required": false
},
"mvs_primary_line": {
"title": "Primary Line",
"type": "string"
},
"mvs_primary_line_cos": {
"title": "Primary Class of Service",
"type": "string"
},
"mvs_extensions": {
"title": "Extensions",
"description": "Extensions to select primary details from.",
"type": "array",
"required": false,
"items": {
"type": "object",
"properties": {
"line": {
"title": "Line",
"type": "string"
},
"line_e164": {
"title": "Line E164",
"type": "string"
},
"line_cos": {
"title": "Class of Service",
"type": "string"
}
}
}
},
"username_avaya_system_manager": {
"title": "Avaya System Manager User Name",
"description": "The username corresponding to the the Username in Avaya System Manager.",
"type": "string",
"required": false
},
"username_broadworks": {
"title": "Broadworks User Name",
"description": "The username corresponding to the the Username in Broadworks.",
"type": "string",
"required": false
},
"username_cuc": {
"title": "Cisco Unity Connection User Name",
"description": "The username corresponding to the the Username in Cisco Unity Connection.",
"type": "string",
"required": false
},
"username_cucm": {
"title": "Cisco Unified Communication Manager User Name",
"description": "The username corresponding to the the Username in Cisco Unified Communication Manager.",
"type": "string",
"required": false
},
"username_hcmf": {
"title": "HCMF User Name",
"description": "The username corresponding to the the Username in Cisco HCMF.",
"type": "string",
"required": false
},
"username_ldap": {
"title": "LDAP Directory User Name",
"description": "The username corresponding to the the Username in the LDAP Directory.",
"type": "string",
"required": false
},
"username_microsoft": {
"title": "Microsoft User Name",
"description": "The username corresponding to the the Microsoft Username.",
"type": "string",
"required": false
},
"username_ms_365": {
"title": "Microsoft Office 365 User Name",
"description": "The username corresponding to the the Username in Microsoft Office 365.",
"type": "string",
"required": false
},
"username_ms_ldap": {
"title": "Microsoft LDAP User Name",
"description": "The username corresponding to the the Username in Microsoft LDAP.",
"type": "string",
"required": false
},
"username_ms_teams": {
"title": "Microsoft Teams User Name",
"description": "The username corresponding to the the Username in Microsoft Teams.",
"type": "string",
"required": false
},
"username_open_ldap": {
"title": "Open LDAP User Name",
"description": "The username corresponding to the the Username in Opoen LDAP.",
"type": "string",
"required": false
},
"username_uccx": {
"title": "Cisco Unified Contact Centre Express User Name",
"description": "The username corresponding to the the Username in Cisco Unified Contact Centre Express.",
"type": "string",
"required": false
},
"username_webex_teams": {
"title": "Webex App User Name",
"description": "The username corresponding to the the Username in Webex App.",
"type": "string",
"required": false
},
"username_zoom": {
"title": "Zoom User Name",
"description": "The username corresponding to the the Username in Zoom.",
"type": "string",
"required": false
},
"authorized_admin_hierarchy": {
"title": "Authorized Admin Hierarchy",
"description": "A reference an Authorized Admin Hierarchy instance that defines this user's administrative capabilities. This enables administrative capabilities for end users.",
"type": "string",
"format": "uri",
"required": false,
"target": "/api/data/AuthorizedAdminHierarchy/choices/?field=name&format=json&hierarchy=[hierarchy]&auth_token=[authtoken],
"target_attr": "name",
"target_model_type": "data/AuthorizedAdminHierarchy",
"choices": []
},
"license_audit_details": {
"title": "License Audit Details",
"description": "License Audit Information.",
"type": "object",
"required": false,
"properties": {
"last_checked": {
"title": "Last Checked",
"description": "The last time the License Audit Details were updated.",
"type": "string",
"format": "date-time",
"required": false,
"readonly": true
},
"status": {
"title": "License Audit Status",
"description": "The License Audit status of the user.",
"type": "string",
"required": false,
"readonly": true,
"default": "Unknown",
"choices": [
{
"value": "Licensed",
"title": "Licensed"
},
{
"value": "Unlicensed",
"title": "Unlicensed"
},
{
"value": "Unknown",
"title": "Unknown"
}
]
}
}
},
"mvs_user": {
"title": "Mvs User",
"type": "object",
"properties": {
"username": {
"title": "VOSS User",
"type": "string"
},
"enabled_services": {
"title": "Enabled Services",
"type": "string"
},
"discovered_services": {
"title": "Discovered Services",
"type": "string"
},
"discovered_apps": {
"title": "Discovered Applications",
"type": "string"
},
"line": {
"title": "VOSS User Line",
"type": "string"
},
"line_by_pattern": {
"title": "VOSS User Line by pattern",
"type": "string"
},
"associated_lines": {
"title": "VOSS User Associated Lines",
"type": "string"
},
"associated_phones": {
"title": "Associated Phones",
"type": "string"
},
"associated_profiles": {
"title": "Associated Profiles",
"type": "string"
},
"associated_cucm_user": {
"title": "Associated Cucm User",
"type": "string"
},
"associated_rdp": {
"title": "Associated SNR",
"type": "string"
},
"associated_vm": {
"title": "Associated VM",
"type": "string"
},
"associated_webex": {
"title": "Associated WebEx",
"type": "string"
},
"associated_webexapp_user": {
"title": "Associated Webex App User",
"type": "string"
},
"associated_webexapp_user_config": {
"title": "Associated Webex App User Config",
"type": "string"
},
"associated_headset": {
"title": "Associated Headset",
"type": "string"
},
"associated_ms": {
"title": "Associated Microsoft User Data",
"type": "string"
},
"ms_user_pkid": {
"title": "Associated Microsoft User PKID",
"type": "string"
},
"ms_teams_user_pkid": {
"title": "Associated Microsoft Teams User PKID",
"type": "string"
},
"cucm_user_pkid": {
"title": "Associated CUCM User PKID",
"type": "string"
},
"located_at": {
"title": "VOSS User Located at",
"type": "string"
},
"associated_ccx": {
"title": "Associated CCX",
"type": "string"
},
"associated_pexip": {
"title": "Associated Pexip",
"type": "string"
},
"associated_fdp": {
"title": "Associated FDP",
"type": "string"
},
"ms_ucs_fdp": {
"title": "Microsoft UCS FDP",
"type": "string"
},
"ms_vm_fdp": {
"title": "Microsoft VM FDP",
"type": "string"
}
}
},
"mvs_user_qa": {
"title": "Mvs User Qa",
"type": "object",
"properties": {
"username": {
"title": "VOSS User",
"type": "string"
},
"qa_login_phone": {
"title": "Login Phone",
"type": "string"
},
"qa_logout_phone": {
"title": "Logout Phone",
"type": "string"
},
"qa_update_subscriber_from_profile": {
"title": "Update Subscriber (Profile)",
"type": "string"
},
"qa_cucm_qas": {
"title": "Quick Subscriber (Cisco UCM)",
"type": "string"
},
"qa_ms_qas": {
"title": "Quick Subscriber (MS)",
"type": "string"
},
"qa_webexapp_qas": {
"title": "Quick Subscriber (Webex App)",
"type": "string"
},
"qa_update_cisco_user": {
"title": "Update User (Cisco UCM)",
"type": "string"
},
"qa_move_subscriber": {
"title": "Move Subscriber",
"type": "string"
},
"qa_reassign_services": {
"title": "Reassign Services",
"type": "string"
},
"qa_update_services": {
"title": "Update Services",
"type": "string"
},
"qa_reset_pin_passwd": {
"title": "Reset Pin / Password",
"type": "string"
},
"qa_delete_services": {
"title": "Delete All Services",
"type": "string"
},
"qa_huntgroup_add": {
"title": "Add to Hunt Group",
"type": "string"
},
"qa_huntgroup_del": {
"title": "Remove from all Hunt Groups",
"type": "string"
},
"qa_cpg_add": {
"title": "Add to Call Pickup Group",
"type": "string"
},
"qa_cpg_del": {
"title": "Remove from all Call Pickup Groups",
"type": "string"
},
"qa_update_group_membership": {
"title": "Update Group Membership",
"type": "string"
},
"qa_refresh": {
"title": "Refresh",
"type": "string"
}
}
},
"cisco_user": {
"title": "Cisco User",
"type": "object",
"properties": {
"username": {
"title": "VOSS User",
"type": "string",
"required": true
},
"imAndPresenceEnable": {
"title": "IM And Presence Enable",
"type": "boolean",
"required": false
},
"ipccExtension": {
"title": "IPCC Extension",
"type": "string",
"required": false
},
"enableUserToHostConferenceNow": {
"title": "Enable User To Host Conference Now",
"type": "boolean",
"required": false
},
"selfService": {
"title": "Meeting Number",
"type": "string",
"required": false,
"readonly": true
},
"attendeesAccessCode": {
"title": "Attendees Access Code ",
"type": "string",
"required": false
},
"serviceProfile": {
"title": "UC Service Profile",
"type": "string",
"required": false
}
}
},
"cisco_phone": {
"title": "Cisco Phone",
"type": "object",
"properties": {
"cucm_user": {
"title": "Cisco CUCM User",
"type": "string"
},
"cucm_user_link": {
"title": "Cisco CUCM User",
"type": "string",
"format": "link"
},
"cucm_user_data": {
"title": "Cisco CUCM User Data",
"type": "string"
},
"associated_phones": {
"title": "Associated Phones",
"type": "string"
},
"cucm_user_phone_link": {
"title": "Cisco CUCM User",
"type": "string",
"format": "link"
},
"cucm_user_phone_data": {
"title": "Cisco CUCM Phone Data",
"type": "string"
},
"name": {
"title": "Phone Name",
"type": "string"
},
"type": {
"title": "Phone Type",
"type": "string"
},
"lines": {
"title": "Phone Lines",
"type": "string"
},
"qa_add": {
"title": "Add",
"type": "string"
},
"qa_delete": {
"title": "Delete",
"type": "string"
},
"qa_reset": {
"title": "Reset",
"type": "string"
},
"qa_generate_prt": {
"title": "Generate PRT",
"type": "string"
},
"qa_replace": {
"title": "Replace",
"type": "string"
}
}
},
"cisco_jabber": {
"title": "Cisco Jabber",
"type": "object",
"properties": {
"cucm_user": {
"title": "Cisco CUCM User",
"type": "string"
},
"cucm_user_link": {
"title": "Cisco CUCM User",
"type": "string",
"format": "link"
},
"cucm_user_data": {
"title": "Cisco CUCM User Data",
"type": "string"
},
"associated_phones": {
"title": "Associated Phones",
"type": "string"
},
"cucm_user_phone_link": {
"title": "Cisco CUCM User",
"type": "string",
"format": "link"
},
"cucm_user_phone_data": {
"title": "Cisco CUCM Phone Data",
"type": "string"
},
"name": {
"title": "Phone Name",
"type": "string"
},
"type": {
"title": "Phone Type",
"type": "string"
},
"lines": {
"title": "Phone Lines",
"type": "string"
},
"qa_add": {
"title": "Add",
"type": "string"
},
"qa_delete": {
"title": "Delete",
"type": "string"
},
"qa_reset": {
"title": "Reset",
"type": "string"
},
"qa_generate_prt": {
"title": "Generate PRT",
"type": "string"
},
"qa_replace": {
"title": "Replace",
"type": "string"
}
}
},
"cisco_em": {
"title": "Cisco Em",
"type": "object",
"properties": {
"cucm_user": {
"title": "Cisco CUCM User",
"type": "string"
},
"cucm_user_link": {
"title": "Cisco CUCM User",
"type": "string",
"format": "link"
},
"cucm_user_data": {
"title": "Cisco CUCM User Data",
"type": "string"
},
"associated_profiles": {
"title": "Associated Profiles",
"type": "string"
},
"cucm_user_em_link": {
"title": "Cisco CUCM EM",
"type": "string",
"format": "link"
},
"cucm_user_em_data": {
"title": "Cisco CUCM EM Data",
"type": "string"
},
"name": {
"title": "EM Name",
"type": "string"
},
"type": {
"title": "EM Type",
"type": "string"
},
"lines": {
"title": "EM Lines",
"type": "string"
},
"qa_add": {
"title": "Add",
"type": "string"
},
"qa_edit": {
"title": "Edit",
"type": "string"
},
"qa_delete": {
"title": "Delete",
"type": "string"
}
}
},
"cisco_snr": {
"title": "Cisco Snr",
"type": "object",
"properties": {
"cucm_user": {
"title": "Cisco CUCM User",
"type": "string"
},
"cucm_user_link": {
"title": "Cisco CUCM User",
"type": "string",
"format": "link"
},
"cucm_user_data": {
"title": "Cisco CUCM User Data",
"type": "string"
},
"associated_rdp": {
"title": "Associated SNR",
"type": "string"
},
"cucm_user_rdp_link": {
"title": "Cisco CUCM User",
"type": "string",
"format": "link"
},
"cucm_user_rdp_data": {
"title": "Cisco CUCM RDP Data",
"type": "string"
},
"line": {
"title": "Line",
"type": "string"
},
"RemoteDestination": {
"title": "Mobile Number",
"type": "string"
},
"qa_add": {
"title": "Add",
"type": "string"
},
"qa_edit": {
"title": "Edit",
"type": "string"
},
"qa_delete": {
"title": "Delete",
"type": "string"
}
}
},
"cisco_vm": {
"title": "Cisco Vm",
"type": "object",
"properties": {
"cuc_user": {
"title": "Cisco CUC User",
"type": "string"
},
"cuc_user_link": {
"title": "Cisco CUC User",
"type": "string",
"format": "link"
},
"cuc_user_data": {
"title": "Cisco CUC User Data",
"type": "string"
},
"account_number": {
"title": "VM Account Number",
"type": "string"
},
"pin_locked": {
"title": "Admin Locked",
"type": "boolean"
},
"pin_user_locked": {
"title": "User Locked",
"type": "boolean"
},
"cuc_lines": {
"title": "CUC Lines",
"type": "boolean"
},
"qa_add": {
"title": "Add",
"type": "string"
},
"qa_edit": {
"title": "Edit",
"type": "string"
},
"qa_delete": {
"title": "Delete",
"type": "string"
},
"qa_unlock_account": {
"title": "Unlock Account",
"type": "string"
},
"qa_lock_account": {
"title": "Lock Account",
"type": "string"
}
}
},
"cisco_webex": {
"title": "Cisco Webex",
"type": "object",
"properties": {
"cucm_user": {
"title": "Cisco CUCM User",
"type": "string"
},
"associated_webex": {
"title": "Associated WebEx User Data",
"type": "string"
},
"active": {
"title": "Active",
"type": "string"
},
"email": {
"title": "Email",
"type": "string"
},
"qa_edit": {
"title": "Edit",
"type": "string"
},
"qa_delete": {
"title": "Delete",
"type": "string"
},
"qa_add": {
"title": "Add",
"type": "string"
}
}
},
"cisco_webexapp_user": {
"title": "Cisco Webexapp User",
"type": "object",
"properties": {
"cucm_user": {
"type": "string",
"title": "Cisco CUCM User"
},
"associated_webexteam": {
"type": "string",
"title": "Associated Webex Team Data"
},
"loginEnabled": {
"type": "string",
"title": "Login Enabled"
},
"invitePending": {
"type": "string",
"title": "Invite Pending"
},
"licenses": {
"type": "string",
"title": "Licenses"
},
"qa_add": {
"type": "string",
"title": "Add"
},
"qa_edit": {
"type": "string",
"title": "Edit"
},
"qa_delete": {
"type": "string",
"title": "Delete"
}
}
},
"cisco_webexapp_calling": {
"title": "Cisco Webexapp Calling",
"type": "object",
"properties": {
"cucm_user": {
"type": "string",
"title": "Cisco CUCM User"
},
"associated_webexteam": {
"type": "string",
"title": "Associated Webex Team Data"
},
"caller_id": {
"type": "string",
"title": "Caller ID"
},
"voicemail_send": {
"type": "string",
"title": "Voicemail Send"
},
"barge_in": {
"type": "string",
"title": "Barge"
},
"call_forward": {
"type": "string",
"title": "Call Forward"
},
"call_recording": {
"type": "string",
"title": "Call Recording"
},
"call_waiting": {
"type": "string",
"title": "Call Waiting"
},
"call_intercept": {
"type": "string",
"title": "Call Intercept"
},
"qa_add": {
"type": "string",
"title": "Add"
},
"qa_edit": {
"type": "string",
"title": "Edit"
},
"qa_delete": {
"type": "string",
"title": "Delete"
}
}
},
"headset": {
"title": "Headset",
"type": "object",
"properties": {
"cucm_user": {
"type": "string",
"title": "Cisco CUCM User"
},
"headset_vendor": {
"type": "string",
"title": "Vendor"
},
"headset_model": {
"type": "string",
"title": "Model"
},
"host_deviceNameTrimmed": {
"type": "string",
"title": "Connected Device"
},
"headset_connectionType": {
"type": "string",
"title": "Connection Type"
},
"headset_connectionStatus": {
"type": "string",
"title": "Connection Status"
},
"lastChangeTime": {
"type": "string",
"title": "Last Status Update"
},
"headset_firmwareVersion": {
"type": "string",
"title": "Firmware Version"
},
"headset_serialNumber": {
"type": "string",
"title": "Serial Number"
},
"qa_associate": {
"type": "string",
"title": "Associate"
},
"qa_disassociate": {
"type": "string",
"title": "Disassociate"
}
}
},
"cisco_ccx": {
"title": "Cisco Ccx",
"type": "object",
"properties": {
"cucm_user": {
"title": "Cisco CUCM User",
"type": "string"
},
"cucm_user_link": {
"title": "Cisco CUCM User",
"type": "string",
"format": "link"
},
"cucm_user_data": {
"title": "Cisco CUCM User Data",
"type": "string"
},
"extension": {
"title": "Extension",
"type": "string"
},
"type": {
"title": "User Type",
"type": "string"
},
"teamName": {
"title": "Team Name",
"type": "string"
},
"resourceGroupName": {
"title": "Resource Group",
"type": "string"
},
"autoAvailable": {
"title": "Auto Available",
"type": "string"
},
"skills": {
"title": "Skills",
"type": "string"
},
"qa_add": {
"title": "Add",
"type": "string"
},
"qa_edit": {
"title": "Edit",
"type": "string"
},
"qa_delete": {
"title": "Delete",
"type": "string"
}
}
},
"msteam": {
"title": "Msteam",
"type": "object",
"properties": {
"ms_user": {
"title": "Microsoft User",
"type": "string"
},
"ms_user_link": {
"title": "Microsoft User",
"type": "string",
"format": "link"
},
"ms_user_data": {
"title": "Microsoft User Data",
"type": "string"
},
"ms_user_pkid": {
"title": "Microsoft User PKID",
"type": "string"
},
"azure_user_data": {
"title": "Microsoft Azure Data",
"type": "string"
},
"ms365": {
"title": "365",
"type": "object",
"properties": {
"PhoneNumber": {
"title": "Phone Number",
"type": "string"
},
"MobileNumber": {
"title": "Mobile Number",
"type": "string"
},
"LocationUsage": {
"title": "Location Usage",
"type": "string"
}
}
},
"mslicenses": {
"title": "Licenses",
"type": "object",
"properties": {
"IsLicensed": {
"title": "Is Licensed",
"type": "string"
},
"SkuFriendlyName": {
"title": "License Summary",
"type": "string"
}
}
},
"msteams": {
"title": "Teams",
"type": "object",
"properties": {
"UserPrincipalName": {
"title": "User Principal Name",
"type": "string"
},
"AccountEnabled": {
"title": "Account Enabled",
"type": "boolean"
},
"FeatureTypes": {
"title": "Feature Types",
"type": "array",
"items": {
"type": "string"
}
},
"LineURItel": {
"title": "Line URI Tel",
"type": "string"
},
"LineURIext": {
"title": "Line URI Ext",
"type": "string"
},
"LineURIType": {
"title": "Line URI Type",
"type": "string"
},
"OnlineVoiceRoutingPolicy": {
"title": "Online Voice Routing Policy",
"type": "string"
},
"TenantDialPlan": {
"title": "Tenant Dial Plan",
"type": "string"
},
"TeamsCallingPolicy": {
"title": "Teams Calling Policy",
"type": "string"
},
"TeamsCallParkPolicy": {
"title": "Teams Call Park Policy",
"type": "string"
},
"TeamsEmergencyCallRoutingPolicy": {
"title": "Teams Emergency Call Routing Policy",
"type": "string"
}
}
},
"qa_msteam_add": {
"title": "Add",
"type": "string"
},
"qa_msteam_edit": {
"title": "Edit",
"type": "string"
},
"qa_msteam_delete": {
"title": "Delete",
"type": "string"
}
}
},
"msucs": {
"title": "Msucs",
"type": "object",
"properties": {
"ms_user": {
"type": "string",
"title": "Microsoft User"
},
"ms_user_link": {
"format": "link",
"type": "string",
"title": "Microsoft User"
},
"ms_user_data": {
"type": "string",
"title": "Microsoft User Data"
},
"ms_user_pkid": {
"type": "string",
"title": "Microsoft User PKID"
},
"azure_user_data": {
"type": "string",
"title": "Microsoft Azure Data"
},
"OnlineDialOutPolicy": {
"type": "string",
"title": "Outbound calling"
},
"ucs": {
"type": "object",
"title": "Settings",
"properties": {
"CallAnsweringRuleOption": {
"type": "string",
"title": "Call Answering Rules"
},
"SimultaneousSettings": {
"type": "object",
"title": "Ring device settings",
"properties": {
"SimultaneousOption": {
"type": "string",
"title": "Also allow"
},
"SimultaneousUnansweredOption": {
"type": "string",
"title": "If unanswered"
}
}
}
}
},
"qa_msucs_add": {
"type": "string",
"title": "Add"
},
"qa_msucs_edit": {
"type": "string",
"title": "Edit"
},
"qa_msucs_delete": {
"type": "string",
"title": "Delete"
}
}
},
"msvm": {
"title": "Msvm",
"type": "object",
"properties": {
"ms_user": {
"title": "Microsoft User",
"type": "string"
},
"ms_user_link": {
"title": "Microsoft User",
"type": "string",
"format": "link"
},
"ms_user_data": {
"title": "Microsoft User Data",
"type": "string"
},
"ms_user_pkid": {
"title": "Microsoft User PKID",
"type": "string"
},
"azure_user_data": {
"title": "Microsoft Azure Data",
"type": "string"
},
"VoicemailEnabled": {
"title": "Voicemail Enabled",
"type": "string"
},
"PromptLanguage": {
"title": "Prompt Language",
"type": "string"
},
"CallAnswerRule": {
"title": "Call Answering Mode",
"type": "string"
},
"CallTransferring": {
"title": "Call transferring",
"type": "string"
},
"TransferTargetNumber": {
"title": "Transfer to PSTN number",
"type": "string"
},
"DefaultGreetingPromptOverwrite": {
"title": "Default greeting prompt",
"type": "string"
},
"DefaultOofGreetingPromptOverwrite": {
"title": "Default out of office prompt",
"type": "string"
},
"OofGreetingEnabled": {
"title": "Always play out-of-office greetings",
"type": "string"
},
"OofGreetingFollowAutomaticRepliesEnabled": {
"title": "When sending automatic replies",
"type": "string"
},
"qa_msvm_add": {
"title": "Add",
"type": "string"
},
"qa_msvm_edit": {
"title": "Edit",
"type": "string"
},
"qa_msvm_delete": {
"title": "Delete",
"type": "string"
}
}
},
"mso365": {
"title": "Mso365",
"type": "object",
"properties": {
"ms_user": {
"title": "Microsoft User",
"type": "string"
},
"ms_user_link": {
"title": "Microsoft User",
"type": "string",
"format": "link"
},
"ms_user_data": {
"title": "Microsoft User Data",
"type": "string"
},
"ms_user_pkid": {
"title": "Microsoft User PKID",
"type": "string"
},
"azure_user_data": {
"title": "Microsoft Azure Data",
"type": "string"
},
"ms365": {
"title": "365",
"type": "object",
"properties": {
"PhoneNumber": {
"title": "Phone Number",
"type": "string"
},
"MobileNumber": {
"title": "Mobile Number",
"type": "string"
},
"LocationUsage": {
"title": "Location Usage",
"type": "string"
}
}
},
"mslicenses": {
"title": "Licenses",
"type": "object",
"properties": {
"IsLicensed": {
"title": "Is Licensed",
"type": "string"
},
"SkuFriendlyName": {
"title": "License Summary",
"type": "string"
}
}
},
"msteams": {
"title": "Teams",
"type": "object",
"properties": {
"UserPrincipalName": {
"title": "User Principal Name",
"type": "string"
},
"AccountEnabled": {
"title": "Account Enabled",
"type": "boolean"
},
"EnterpriseVoiceEnabled": {
"title": "Enterprise Voice Enabled",
"type": "boolean"
},
"LineURItel": {
"title": "Line URI Tel",
"type": "string"
},
"LineURIext": {
"title": "Line URI Ext",
"type": "string"
},
"OnlineVoiceRoutingPolicy": {
"title": "Online Voice Routing Policy",
"type": "string"
},
"TenantDialPlan": {
"title": "Tenant Dial Plan",
"type": "string"
},
"TeamsCallingPolicy": {
"title": "Teams Calling Policy",
"type": "string"
},
"TeamsCallParkPolicy": {
"title": "Teams Call Park Policy",
"type": "string"
},
"TeamsEmergencyCallRoutingPolicy": {
"title": "Teams Emergency Call Routing Policy",
"type": "string"
}
}
},
"qa_mso365_add": {
"title": "Add",
"type": "string"
},
"qa_mso365_edit": {
"title": "Edit",
"type": "string"
},
"qa_mso365_delete": {
"title": "Delete",
"type": "string"
}
}
},
"mseo": {
"title": "Mseo",
"type": "object",
"properties": {
"ms_user": {
"type": "string",
"title": "Microsoft User"
},
"ms_user_link": {
"format": "link",
"type": "string",
"title": "Microsoft User"
},
"ms_user_data": {
"type": "string",
"title": "Microsoft User Data"
},
"ms_user_pkid": {
"type": "string",
"title": "Microsoft User PKID"
},
"enabled": {
"type": "string",
"title": "Exchange Enabled"
},
"Permissions": {
"type": "string",
"title": "Permissions"
},
"CalendarPermissions": {
"type": "string",
"title": "Calendar Permissions"
},
"qa_mseo_add": {
"type": "string",
"title": "Add"
},
"qa_mseo_edit": {
"type": "string",
"title": "Edit"
}
}
},
"pexip": {
"title": "Pexip",
"type": "object",
"properties": {
"pexip_user": {
"title": "Pexip User",
"type": "string"
},
"pexip_user_link": {
"title": "Pexip User",
"type": "string",
"format": "link"
},
"pexip_user_data": {
"title": "Pexip User Data",
"type": "string"
},
"name": {
"title": "Account Name",
"type": "string"
},
"ConferenceAlias": {
"title": "Aliases",
"type": "string"
},
"primary_owner_email_address": {
"title": "Primary Owner Email Address",
"type": "string"
},
"qa_add": {
"title": "Add",
"type": "string"
},
"qa_edit": {
"title": "Edit",
"type": "string"
},
"qa_delete": {
"title": "Delete",
"type": "string"
}
}
},
"hybrid_status": {
"title": "Hybrid Status",
"type": "object",
"properties": {
"username": {
"title": "VOSS User",
"type": "string"
},
"qa_add_hybrid_subscriber": {
"title": "Add Hybrid Subscriber",
"type": "string"
},
"qa_update_hybrid_status": {
"title": "Update Hybrid Status",
"type": "string"
}
}
}
},
"schema_version": "1.2.8"
}
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| Get the GUI Add form. | GET | /api/relation/MultiVendorSubscriber/add/ |
|
The GUI Add form of relation/MultiVendorSubscriber as JSON |
The API call to the /add/ URL can only be made from a hierarchy that allows the model type to be added. The actions in the response shows the url for the POST API call to create an instance.
| Task | Call | URL | Parameters | Payload |
|---|---|---|---|---|
| Create | POST | /api/relation/MultiVendorSubscriber | hierarchy=[hierarchy] |
|
tool/Transaction/[trans pkid]to inspect the created resource and its instance pkid.
| Task | Call | URL | Parameters | Payload |
|---|---|---|---|---|
| Bulk delete [pkid1],[pkid2]... | DELETE | /api/relation/MultiVendorSubscriber/ | hierarchy=[hierarchy] | {"hrefs":["/api/relation/MultiVendorSubscriber/[pkid1]", "/api/relation/MultiVendorSubscriber/[pkid2]", ...]} |
GET http://[host-proxy]/api/relation/MultiVendorSubscriber/?hierarchy=[hierarchy]&format=json
| Task | Call | URL | Parameters | Payload |
|---|---|---|---|---|
| Get a selected [export_format] of the schema and instances [pkid1], [pkid2],... of relation/MultiVendorSubscriber; optionally with tag_version at [version] and Configuration Template as [configtemplate]. | POST | /api/relation/MultiVendorSubscriber/export/ |
|
{ "hrefs":["/api/relation/MultiVendorSubscriber/[pkid1]", "/api/relation/MultiVendorSubscriber/[pkid2]",...]}} |
For export_format=json, the response is a time stamped zip file of data in JSON as in the system database. Item properties such as strings that are empty or Boolean values that are not set, are not included. The filename in the response is of the format as the example:
Content-Disposition: attachment; filename=export_2013-05-17_14:20:19.186444.json.zip
Content-Language:en
Content-Type:application/x-zip
For export_format=raw_xlsx, the response is a MS Excel spreadsheet with columns corresponding to the JSON format export and a response filename format:
Content-Disposition: attachment; filename=<resource_type>_<resource_name>_exportedsheet_CCYY-MM-DD_HH-MM-SS.xlsx
Content-Language:en
Content-Type:application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
For export_format=xlsx, the response is a MS Excel spreadsheet, arranged by any Field Display Policies that apply. The columns correspond with those of a Bulk Load Template export sheet. The response filename format is:
Content-Disposition: attachment; filename=<resource_type>_<resource_name>_exportedsheet_formatted_CCYY-MM-DD_HH-MM-SS.xlsx
Content-Language:en
Content-Type:application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
The XLSX format can be used to bulk load instances of relation/MultiVendorSubscriber and the JSON format can be used to import instances of relation/MultiVendorSubscriber.
GET http://[host-proxy]/api/relation/MultiVendorSubscriber/?hierarchy=[hierarchy]
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| Get a compressed format of the Bulk Load spreadsheet template for relation/MultiVendorSubscriber | POST | /api/relation/MultiVendorSubscriber/export_bulkload_template/ |
|
The response is an attachment of the format: filetype_bulkloadsheet.xlsx.gz |
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| Configuration Template | GET | /api/relation/MultiVendorSubscriber/configuration_template/ | hierarchy=[hierarchy] |
|
POST http://[host-proxy]/api/data/ConfigurationTemplate/?hierarchy=[hierarchy]
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| Field Display Policy | GET | /api/relation/MultiVendorSubscriber/field_display_policy/ | hierarchy=[hierarchy] |
|
POST http://[host-proxy]/api/data/FieldDisplayPolicy/?hierarchy=[hierarchy]
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| List | GET | /api/relation/MultiVendorSubscriber/ |
|
The relation/MultiVendorSubscriber schema and all instances as JSON. |
(The list will return 0 to 3 relation/MultiVendorSubscriber instances)
{
"pagination": {
"skip": 0,
"limit": 3,
"maximum_limit": 2000,
"total": 219,
"total_limit": null,
"order_by": "username",
"direction": "asc",
"current": "/api/relation/MultiVendorSubscriber/?skip=0&limit=3&order_by=username&direction=asc&traversal=down"
},
"operations": [
"remove",
"list",
"get",
"add",
"export",
"bulk_update",
"export_bulkload_template",
"configuration_template",
"help",
"update",
"field_display_policy"
],
"meta": {
"model_type": "relation/MultiVendorSubscriber",
"summary_attrs": [
{
"name": "username",
"title": "User Name"
},
{
"name": "first_name",
"title": "First Name"
},
{
"name": "last_name",
"title": "Last Name"
},
{
"name": "email",
"title": "Email Address"
},
{
"name": "role",
"title": "Role"
},
{
"name": "authorized_admin_hierarchy",
"title": "Authorized Admin Hierarchy"
},
{
"name": "entitlement_profile",
"title": "Entitlement Profile"
},
{
"name": "sync_source",
"title": "Sync Source"
},
{
"name": "sync_type",
"title": "Sync Type"
},
{
"name": "user_type",
"title": "User Type"
},
{
"name": "auth_method",
"title": "Auth Method"
},
{
"name": "department",
"title": "Department"
},
{
"name": "telephone_number",
"title": "Telephone Number"
},
{
"name": "language",
"title": "Language"
},
{
"name": "account_information.locked",
"title": "Locked",
"allow_ordering": false,
"allow_filtering": true
},
{
"name": "account_information.disabled",
"title": "Disabled",
"allow_ordering": false,
"allow_filtering": true
},
{
"name": "license_audit_details.status",
"title": "License Audit Status",
"allow_ordering": false,
"allow_filtering": true
},
{
"name": "hierarchy_friendly_name",
"title": "Located At",
"allow_filtering": true
}
],
"tagged_versions": [],
"tags": [],
"title": "",
"business_key": {},
"api_version": "21.2",
"cached": true,
"references": {
"children": [],
"parent": [
{
"href": "/api/data/HierarchyNode/6t0ggef2c0deab00hb595101",
"pkid": "6t0ggef2c0deab00hb595101"
}
],
"device": [
{
"href": "",
"pkid": ""
}
],
"foreign_key": [],
"self": [
{
"href": "/api/relation/MultiVendorSubscriber/None/",
"pkid": null
}
]
},
"model_specific_actions": [
"remove",
"get",
"add",
"list",
"export",
"export_bulkload_template",
"configuration_template",
"help",
"update",
"field_display_policy"
],
"schema_version": "1.2.8",
"actions": [
{
"add": {
"method": "GET",
"class": "add",
"href": "/api/relation/MultiVendorSubscriber/add/?hierarchy=[hierarchy]",
"support_async": false,
"title": "Add"
}
},
{
"remove": {
"method": "DELETE",
"class": "delete",
"href": "/api/relation/MultiVendorSubscriber/?hierarchy=[hierarchy]",
"support_async": true,
"title": "Delete"
}
},
{
"export": {
"method": "POST",
"class": "export",
"href": "/api/relation/MultiVendorSubscriber/export/?hierarchy=[hierarchy]",
"support_async": false,
"title": "Export",
"view": "/api/view/ExportData/add/?auth_token=[authtoken],
"submit": "payload"
}
},
{
"export_bulkload_template": {
"method": "POST",
"class": "bulkload_template",
"href": "/api/relation/MultiVendorSubscriber/export_bulkload_template/?hierarchy=[hierarchy]",
"support_async": false,
"title": "Export Bulk Load Template"
}
},
{
"configuration_template": {
"method": "GET",
"class": "config",
"href": "/api/relation/MultiVendorSubscriber/configuration_template/?hierarchy=[hierarchy]",
"support_async": false,
"title": "Configuration Template"
}
},
{
"field_display_policy": {
"method": "GET",
"class": "display_policy",
"href": "/api/relation/MultiVendorSubscriber/field_display_policy/?hierarchy=[hierarchy]",
"support_async": false,
"title": "Field Display Policy"
}
},
{
"list": {
"method": "GET",
"class": "list",
"href": "/api/relation/MultiVendorSubscriber/?hierarchy=[hierarchy]",
"support_async": false,
"title": "List"
}
},
{
"help": {
"method": "GET",
"class": "help",
"href": "/api/relation/MultiVendorSubscriber/help?hierarchy=[hierarchy]",
"support_async": false,
"title": "Help"
}
}
]
},
"resources": [
{
"data": {
"last_name": "#ln",
"ldap_server": "",
"user_type": "End User",
"ldap_username": "",
"object_class": [
"top",
"person",
"organizationalPerson",
"user"
],
"first_name": "#user",
"display_name": "#user #ln",
"sync_type": "LDAP",
"entitlement_profile": "[\"AB_Group-Standard-EP\", \"hcs.CS-P.CS-AB.AB_Group\"]",
"role": "AB_GroupSelfService",
"username": "#username",
"sso_username": "",
"sync_source": "LDAP",
"auth_method": "Automatic",
"sso_idp": "",
"exclude_from_directory": false,
"language": "en-us",
"set_language": false,
"license_audit_details": {
"last_checked": "2024-08-05T03:00:24.031Z",
"status": "Unlicensed"
},
"pkid": "61f123ebef11f0522b607591",
"hierarchy_friendly_name": "AB-DS (IntermediateNode)",
"hierarchy_path": "sys.hcs.CS-P.CS-AB.AB_Group.AB-DS"
},
"meta": {
"model_type": "relation/MultiVendorSubscriber",
"summary_attrs": [
{
"name": "username",
"title": "User Name"
},
{
"name": "first_name",
"title": "First Name"
},
{
"name": "last_name",
"title": "Last Name"
},
{
"name": "email",
"title": "Email Address"
},
{
"name": "role",
"title": "Role"
},
{
"name": "authorized_admin_hierarchy",
"title": "Authorized Admin Hierarchy"
},
{
"name": "entitlement_profile",
"title": "Entitlement Profile"
},
{
"name": "sync_source",
"title": "Sync Source"
},
{
"name": "sync_type",
"title": "Sync Type"
},
{
"name": "user_type",
"title": "User Type"
},
{
"name": "auth_method",
"title": "Auth Method"
},
{
"name": "department",
"title": "Department"
},
{
"name": "telephone_number",
"title": "Telephone Number"
},
{
"name": "language",
"title": "Language"
},
{
"name": "account_information.locked",
"title": "Locked",
"allow_ordering": false,
"allow_filtering": true
},
{
"name": "account_information.disabled",
"title": "Disabled",
"allow_ordering": false,
"allow_filtering": true
},
{
"name": "license_audit_details.status",
"title": "License Audit Status",
"allow_ordering": false,
"allow_filtering": true
},
{
"name": "hierarchy_friendly_name",
"title": "Located At",
"allow_filtering": true
}
],
"tagged_versions": [],
"tags": [],
"title": "#username",
"business_key": {
"hierarchy": true,
"unique": [
"username"
]
},
"api_version": "21.2",
"cached": true,
"references": {
"device": [
{
"href": "",
"pkid": ""
}
],
"owner": [
{
"pkid": ""
}
],
"parent": [
{
"pkid": "5df0b6c8ce894e001275cf1b",
"href": "/api/data/HierarchyNode/5df0b6c8ce894e001275cf1b"
}
],
"foreign_key": [
{
"pkid": "5df0b671ce894e001275aad5",
"path": "role",
"model_type": "data/Role"
},
{
"pkid": "5da4ba0ece894e0012e64c0b",
"path": "language",
"model_type": "data/Language"
},
{
"pkid": "5df0b67fce894e001275b3ab",
"path": "entitlement_profile",
"model_type": "data/HcsEntitlementProfileDAT"
},
{
"pkid": "61f0f255e04a4a0015109572",
"path": "sync_source",
"model_type": "data/UserSyncSource"
}
],
"self": [
{
"href": "/api/relation/MultiVendorSubscriber/61f123e9ef11f0522b60746d/",
"pkid": "61f123e9ef11f0522b60746d"
}
]
},
"path": [
"6t0ggef2c0deab00hb595101",
"5da4c643ce894e0012225c90",
"5df0b338ce894e001275535c",
"5df0b3a3ce894e0012756904",
"5df0b66bce894e001275a913",
"5df0b6c8ce894e001275cf1b",
"61f123e9ef11f0522b60746d"
],
"schema_version": "1.1.7",
"actions": [
{
"update": {
"method": "PUT",
"class": "update",
"href": "/api/relation/MultiVendorSubscriber/61f123e9ef11f0522b60746d/",
"support_async": true,
"title": "Modify"
}
},
{
"remove": {
"method": "DELETE",
"class": "delete",
"href": "/api/relation/MultiVendorSubscriber/61f123e9ef11f0522b60746d/",
"support_async": true,
"title": "Delete"
}
},
{
"export": {
"method": "GET",
"class": "export",
"href": "/api/relation/MultiVendorSubscriber/61f123e9ef11f0522b60746d/export/",
"support_async": false,
"title": "Export",
"view": "/api/view/ExportData/add/",
"submit": "payload"
}
},
{
"get": {
"method": "GET",
"class": "get",
"href": "/api/relation/MultiVendorSubscriber/61f123e9ef11f0522b60746d/",
"support_async": false,
"title": "Get"
}
},
{
"help": {
"method": "GET",
"class": "help",
"href": "/api/relation/MultiVendorSubscriber/61f123e9ef11f0522b60746d/help",
"support_async": false,
"title": "Help"
}
}
],
"summary": "false"
},
"pkid": "61f123e9ef11f0522b60746d"
},
{
"data": {
"username": "AAH-Subscriber",
"auth_method": "Automatic",
"last_name": "last",
"sync_type": "CUCM-Local",
"language": "en-us",
"pkid": "6683fdde075a28163db7fc77",
"ldap_server": "",
"entitlement_profile": "[\"AB_Group-Standard-EP\", \"hcs.CS-P.CS-AB.AB_Group\"]",
"user_type": "End User",
"ldap_username": "",
"sso_username": "",
"license_audit_details": {
"last_checked": "2024-08-05T03:00:24.031Z",
"status": "Unlicensed"
},
"role": "AB_GroupSelfService",
"sync_source": "CUCM",
"exclude_from_directory": false,
"set_language": false,
"sso_idp": "",
"hierarchy_friendly_name": "AB_Group (Customer)",
"hierarchy_path": "sys.hcs.CS-P.CS-AB.AB_Group"
},
"meta": {
"model_type": "relation/MultiVendorSubscriber",
"summary_attrs": [
{
"name": "username",
"title": "User Name"
},
{
"name": "first_name",
"title": "First Name"
},
{
"name": "last_name",
"title": "Last Name"
},
{
"name": "email",
"title": "Email Address"
},
{
"name": "role",
"title": "Role"
},
{
"name": "authorized_admin_hierarchy",
"title": "Authorized Admin Hierarchy"
},
{
"name": "entitlement_profile",
"title": "Entitlement Profile"
},
{
"name": "sync_source",
"title": "Sync Source"
},
{
"name": "sync_type",
"title": "Sync Type"
},
{
"name": "user_type",
"title": "User Type"
},
{
"name": "auth_method",
"title": "Auth Method"
},
{
"name": "department",
"title": "Department"
},
{
"name": "telephone_number",
"title": "Telephone Number"
},
{
"name": "language",
"title": "Language"
},
{
"name": "account_information.locked",
"title": "Locked",
"allow_ordering": false,
"allow_filtering": true
},
{
"name": "account_information.disabled",
"title": "Disabled",
"allow_ordering": false,
"allow_filtering": true
},
{
"name": "license_audit_details.status",
"title": "License Audit Status",
"allow_ordering": false,
"allow_filtering": true
},
{
"name": "hierarchy_friendly_name",
"title": "Located At",
"allow_filtering": true
}
],
"tagged_versions": [],
"tags": [],
"title": "AAH-Subscriber",
"business_key": {
"hierarchy": true,
"unique": [
"username"
]
},
"api_version": "21.2",
"cached": true,
"references": {
"device": [
{
"href": "",
"pkid": ""
}
],
"owner": [
{
"pkid": ""
}
],
"parent": [
{
"pkid": "5df0b66bce894e001275a913",
"href": "/api/data/HierarchyNode/5df0b66bce894e001275a913"
}
],
"foreign_key": [
{
"pkid": "5df0b671ce894e001275aad5",
"path": "role",
"model_type": "data/Role"
},
{
"pkid": "5da4ba0ece894e0012e64c0b",
"path": "language",
"model_type": "data/Language"
},
{
"pkid": "5df0b67fce894e001275b3ab",
"path": "entitlement_profile",
"model_type": "data/HcsEntitlementProfileDAT"
},
{
"pkid": "61f0f254e04a4a001510954e",
"path": "sync_source",
"model_type": "data/UserSyncSource"
}
],
"self": [
{
"href": "/api/relation/MultiVendorSubscriber/6683fddd075a28163db7fbf8/",
"pkid": "6683fddd075a28163db7fbf8"
}
]
},
"path": [
"6t0ggef2c0deab00hb595101",
"5da4c643ce894e0012225c90",
"5df0b338ce894e001275535c",
"5df0b3a3ce894e0012756904",
"5df0b66bce894e001275a913",
"6683fddd075a28163db7fbf8"
],
"schema_version": "1.1.7",
"actions": [
{
"update": {
"method": "PUT",
"class": "update",
"href": "/api/relation/MultiVendorSubscriber/6683fddd075a28163db7fbf8/",
"support_async": true,
"title": "Modify"
}
},
{
"remove": {
"method": "DELETE",
"class": "delete",
"href": "/api/relation/MultiVendorSubscriber/6683fddd075a28163db7fbf8/",
"support_async": true,
"title": "Delete"
}
},
{
"export": {
"method": "GET",
"class": "export",
"href": "/api/relation/MultiVendorSubscriber/6683fddd075a28163db7fbf8/export/",
"support_async": false,
"title": "Export",
"view": "/api/view/ExportData/add/",
"submit": "payload"
}
},
{
"get": {
"method": "GET",
"class": "get",
"href": "/api/relation/MultiVendorSubscriber/6683fddd075a28163db7fbf8/",
"support_async": false,
"title": "Get"
}
},
{
"help": {
"method": "GET",
"class": "help",
"href": "/api/relation/MultiVendorSubscriber/6683fddd075a28163db7fbf8/help",
"support_async": false,
"title": "Help"
}
}
],
"summary": "false"
},
"pkid": "6683fddd075a28163db7fbf8"
},
{
"data": {
"customString3": "",
"last_name": "Carstel",
"customBoolean10": false,
"ldap_server": "",
"user_type": "End User",
"ldap_username": "",
"manager": "",
"street": "Kreetslag 10",
"postal_code": "21129",
"customString7": "",
"customBoolean1": false,
"object_class": [
"top",
"person",
"organizationalPerson",
"user"
],
"building_name": "CL1-AB-C-Hannover",
"city": "Hannover",
"first_name": "Andy",
"jabber_id": "",
"display_name": "Andy Carstel",
"sync_type": "LDAP",
"title": "VIP_Worker",
"pkid": "5df0bf62ce894e0012785a96",
"entitlement_profile": "[\"AB_Group-Premium-EP\", \"hcs.CS-P.CS-AB.AB_Group\"]",
"state": "",
"role": "CL1-AB-C-HannoverSelfService",
"department": "Finance",
"exclude_from_directory": false,
"email": "acarstel01@ab-group.com",
"username": "acarstel01",
"customString2": "",
"customString1": "",
"physical_delivery_office_name": "CL1-AB-C-Hannover",
"customString6": "",
"customString5": "",
"customString4": "",
"customString9": "",
"customString8": "",
"sso_username": "",
"customBoolean4": false,
"sync_source": "LDAP",
"employee_type": "",
"auth_method": "Automatic",
"sso_idp": "",
"photo_url": "",
"customBoolean7": false,
"customBoolean6": false,
"customBoolean5": false,
"customBoolean3": false,
"customBoolean2": false,
"language": "en-us",
"mobile": [
"+497774371102"
],
"directory_uri": "acarstel01@ab-group.com",
"telephone_number": [
"+494074371102"
],
"employee_number": "12601102",
"customBoolean9": false,
"customBoolean8": false,
"customString10": "",
"ip_phone": [
"8201102"
],
"country": "DE",
"organization": "",
"unverified_mailbox": "",
"set_language": true,
"username_webex_teams": "",
"license_audit_details": {
"last_checked": "2024-08-05T03:00:24.031Z",
"status": "Licensed"
},
"hierarchy_friendly_name": "CL1-AB-C-Hannover (Site)",
"hierarchy_path": "sys.hcs.CS-P.CS-AB.AB_Group.AB-C.CL1-AB-C-Hannover"
},
"meta": {
"model_type": "relation/MultiVendorSubscriber",
"summary_attrs": [
{
"name": "username",
"title": "User Name"
},
{
"name": "first_name",
"title": "First Name"
},
{
"name": "last_name",
"title": "Last Name"
},
{
"name": "email",
"title": "Email Address"
},
{
"name": "role",
"title": "Role"
},
{
"name": "authorized_admin_hierarchy",
"title": "Authorized Admin Hierarchy"
},
{
"name": "entitlement_profile",
"title": "Entitlement Profile"
},
{
"name": "sync_source",
"title": "Sync Source"
},
{
"name": "sync_type",
"title": "Sync Type"
},
{
"name": "user_type",
"title": "User Type"
},
{
"name": "auth_method",
"title": "Auth Method"
},
{
"name": "department",
"title": "Department"
},
{
"name": "telephone_number",
"title": "Telephone Number"
},
{
"name": "language",
"title": "Language"
},
{
"name": "account_information.locked",
"title": "Locked",
"allow_ordering": false,
"allow_filtering": true
},
{
"name": "account_information.disabled",
"title": "Disabled",
"allow_ordering": false,
"allow_filtering": true
},
{
"name": "license_audit_details.status",
"title": "License Audit Status",
"allow_ordering": false,
"allow_filtering": true
},
{
"name": "hierarchy_friendly_name",
"title": "Located At",
"allow_filtering": true
}
],
"tagged_versions": [],
"tags": [],
"title": "acarstel01",
"business_key": {
"hierarchy": true,
"unique": [
"username"
]
},
"api_version": "21.2",
"cached": true,
"references": {
"device": [
{
"href": "",
"pkid": ""
}
],
"owner": [
{
"pkid": ""
}
],
"parent": [
{
"pkid": "5df0b75ece894e001275ee96",
"href": "/api/data/HierarchyNode/5df0b75ece894e001275ee96"
}
],
"foreign_key": [
{
"pkid": "5df0b762ce894e001275efa8",
"path": "role",
"model_type": "data/Role"
},
{
"pkid": "5da4ba0ece894e0012e64c0b",
"path": "language",
"model_type": "data/Language"
},
{
"pkid": "5df0b67dce894e001275b102",
"path": "entitlement_profile",
"model_type": "data/HcsEntitlementProfileDAT"
},
{
"pkid": "61f0f255e04a4a0015109572",
"path": "sync_source",
"model_type": "data/UserSyncSource"
}
],
"self": [
{
"href": "/api/relation/MultiVendorSubscriber/5df0bf62ce894e0012785a8c/",
"pkid": "5df0bf62ce894e0012785a8c"
}
]
},
"path": [
"6t0ggef2c0deab00hb595101",
"5da4c643ce894e0012225c90",
"5df0b338ce894e001275535c",
"5df0b3a3ce894e0012756904",
"5df0b66bce894e001275a913",
"5df0b6b6ce894e001275ca48",
"5df0b75ece894e001275ee96",
"5df0bf62ce894e0012785a8c"
],
"schema_version": "1.1.7",
"actions": [
{
"update": {
"method": "PUT",
"class": "update",
"href": "/api/relation/MultiVendorSubscriber/5df0bf62ce894e0012785a8c/",
"support_async": true,
"title": "Modify"
}
},
{
"remove": {
"method": "DELETE",
"class": "delete",
"href": "/api/relation/MultiVendorSubscriber/5df0bf62ce894e0012785a8c/",
"support_async": true,
"title": "Delete"
}
},
{
"export": {
"method": "GET",
"class": "export",
"href": "/api/relation/MultiVendorSubscriber/5df0bf62ce894e0012785a8c/export/",
"support_async": false,
"title": "Export",
"view": "/api/view/ExportData/add/",
"submit": "payload"
}
},
{
"get": {
"method": "GET",
"class": "get",
"href": "/api/relation/MultiVendorSubscriber/5df0bf62ce894e0012785a8c/",
"support_async": false,
"title": "Get"
}
},
{
"help": {
"method": "GET",
"class": "help",
"href": "/api/relation/MultiVendorSubscriber/5df0bf62ce894e0012785a8c/help",
"support_async": false,
"title": "Help"
}
}
],
"summary": "false"
},
"pkid": "5df0bf62ce894e0012785a8c"
}
]
}
(Show the first instance)
{
"data": {
"last_name": "#ln",
"ldap_server": "",
"user_type": "End User",
"ldap_username": "",
"object_class": [
"top",
"person",
"organizationalPerson",
"user"
],
"first_name": "#user",
"display_name": "#user #ln",
"sync_type": "LDAP",
"entitlement_profile": "[\"AB_Group-Standard-EP\", \"hcs.CS-P.CS-AB.AB_Group\"]",
"role": "AB_GroupSelfService",
"username": "#username",
"sso_username": "",
"sync_source": "LDAP",
"auth_method": "Automatic",
"sso_idp": "",
"exclude_from_directory": false,
"language": "en-us",
"set_language": false,
"license_audit_details": {
"last_checked": "2024-08-05T03:00:24.031Z",
"status": "Unlicensed"
}
},
"meta": {
"model_type": "relation/MultiVendorSubscriber",
"summary_attrs": [
{
"name": "username",
"title": "User Name"
},
{
"name": "first_name",
"title": "First Name"
},
{
"name": "last_name",
"title": "Last Name"
},
{
"name": "email",
"title": "Email Address"
},
{
"name": "role",
"title": "Role"
},
{
"name": "authorized_admin_hierarchy",
"title": "Authorized Admin Hierarchy"
},
{
"name": "entitlement_profile",
"title": "Entitlement Profile"
},
{
"name": "sync_source",
"title": "Sync Source"
},
{
"name": "sync_type",
"title": "Sync Type"
},
{
"name": "user_type",
"title": "User Type"
},
{
"name": "auth_method",
"title": "Auth Method"
},
{
"name": "department",
"title": "Department"
},
{
"name": "telephone_number",
"title": "Telephone Number"
},
{
"name": "language",
"title": "Language"
},
{
"name": "account_information.locked",
"title": "Locked",
"allow_ordering": false,
"allow_filtering": true
},
{
"name": "account_information.disabled",
"title": "Disabled",
"allow_ordering": false,
"allow_filtering": true
},
{
"name": "license_audit_details.status",
"title": "License Audit Status",
"allow_ordering": false,
"allow_filtering": true
},
{
"name": "hierarchy_friendly_name",
"title": "Located At",
"allow_filtering": true
}
],
"tagged_versions": [],
"tags": [],
"title": "#username",
"business_key": {},
"api_version": "21.2",
"cached": true,
"cache_control_policy": "cache_then_device",
"references": {
"device": [
{
"href": "",
"pkid": ""
}
],
"children": [],
"parent": [
{
"pkid": "5df0b6c8ce894e001275cf1b",
"href": "/api/data/HierarchyNode/5df0b6c8ce894e001275cf1b"
}
],
"self": [
{
"href": "/api/relation/MultiVendorSubscriber/61f123e9ef11f0522b60746d/",
"pkid": "61f123e9ef11f0522b60746d"
}
]
},
"schema_version": "1.2.8",
"actions": [
{
"update": {
"method": "PUT",
"class": "update",
"href": "/api/relation/MultiVendorSubscriber/61f123e9ef11f0522b60746d/?hierarchy=[hierarchy]",
"support_async": true,
"title": "Modify"
}
},
{
"remove": {
"method": "DELETE",
"class": "delete",
"href": "/api/relation/MultiVendorSubscriber/61f123e9ef11f0522b60746d/?hierarchy=[hierarchy]",
"support_async": true,
"title": "Delete"
}
},
{
"export": {
"method": "GET",
"class": "export",
"href": "/api/relation/MultiVendorSubscriber/61f123e9ef11f0522b60746d/export/?hierarchy=[hierarchy]",
"support_async": false,
"title": "Export",
"view": "/api/view/ExportData/add/?auth_token=[authtoken],
"submit": "payload"
}
},
{
"get": {
"method": "GET",
"class": "get",
"href": "/api/relation/MultiVendorSubscriber/61f123e9ef11f0522b60746d/?hierarchy=[hierarchy]",
"support_async": false,
"title": "Get"
}
},
{
"help": {
"method": "GET",
"class": "help",
"href": "/api/relation/MultiVendorSubscriber/61f123e9ef11f0522b60746d/help?hierarchy=[hierarchy]",
"support_async": false,
"title": "Help"
}
}
]
},
"pkid": "61f123e9ef11f0522b60746d"
}
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| Get the on-line Help for relation/MultiVendorSubscriber. | GET | /api/relation/MultiVendorSubscriber/help | hierarchy=[hierarchy] | On-line help of Model ref.: relation/MultiVendorSubscriber as HTML |
| Task | Call | URL | Parameters | Payload |
|---|---|---|---|---|
| Modify | PUT | /api/relation/MultiVendorSubscriber/[pkid] | hierarchy=[hierarchy] | (For payload specification) |
For Bulk modification, refer to the Bulk Modify section.
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| Delete | DELETE | /api/relation/MultiVendorSubscriber/[pkid] | hierarchy=[hierarchy] |
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| Get a selected [export_format] of the schema and a single instance with [pkid] of relation/MultiVendorSubscriber; optionally with tag_version at [version] and Configuration Template as [configtemplate]. | GET | /api/relation/MultiVendorSubscriber/[pkid]/export |
|
The response is an attachment. Refer to the list below. |
For export_format=raw_xlsx, the response is a "raw" MS Excel spreadsheet with columns corresponding to the JSON format export and a response format:
Content-Disposition: attachment; filename=<resource_type>_<resource_name>_exportedsheet_CCYY-MM-DD_HH-MM-SS.xlsx
Content-Language:en
Content-Type:application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
For export_format=xlsx, the response is a MS Excel spreadsheet, formatted to show all columns and a response format:
Content-Disposition: attachment; filename=<resource_type>_<resource_name>_exportedsheet_formatted_CCYY-MM-DD_HH-MM-SS.xlsx
Content-Language:en
Content-Type:application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
For export_format=json, the response is a time stamped zip file of data in JSON and a response format:
Content-Disposition: attachment; filename=export_2013-05-17_14:20:19.186444.json.zip
Content-Language:en
Content-Type:application/x-zip
The XLSX format can be used to bulk load instances of relation/MultiVendorSubscriber and the JSON format can be used to import instances of relation/MultiVendorSubscriber.
For Bulk Export, refer to the Bulk Export section.
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| Get | GET | /api/relation/MultiVendorSubscriber/[pkid] | hierarchy=[hierarchy] | The relation/MultiVendorSubscriber instance with [pkid]. |
| Task | Call | URL | Parameters | Response |
|---|---|---|---|---|
| Help | GET | /api/relation/MultiVendorSubscriber/[pkid]/help | hierarchy=[hierarchy] | The on-line Help for relation/MultiVendorSubscriber. |