All URIs are relative to https://openapi.alipay.com.
Method | HTTP request | Description |
---|---|---|
query() | GET /v3/alipay/commerce/ec/user/enterprise | 用户企业列表 |
query($userId, $openId): \Alipay\OpenAPISDK\Model\AlipayCommerceEcUserEnterpriseQueryResponseModel
用户企业列表
用户所属企业列表
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Alipay\OpenAPISDK\Api\AlipayCommerceEcUserEnterpriseApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
// 初始化alipay参数
$alipayConfig = new \Alipay\OpenAPISDK\Util\Model\AlipayConfig();
$alipayConfig->setAppId('app_id');
$alipayConfig->setPrivateKey('private_key');
// 密钥模式
$alipayConfig->setAlipayPublicKey('alipay_public_key');
// 证书模式
// $alipayConfig->setAppCertPath('../appCertPublicKey.crt');
// $alipayConfig->setAlipayPublicCertPath('../alipayCertPublicKey_RSA2.crt');
// $alipayConfig->setRootCertPath('../alipayRootCert.crt');
$alipayConfig->setEncryptKey('encrypt_key');
$alipayConfigUtil = new \Alipay\OpenAPISDK\Util\AlipayConfigUtil($alipayConfig);
$apiInstance->setAlipayConfigUtil($alipayConfigUtil);
$userId = 20889384849393; // string | 用户id
$openId = 074a1CcTG1LelxKe4xQC0zgNdId0nxi95b5lsNpazWYoCo5; // string | 用户open_id
try {
$result = $apiInstance->query($userId, $openId);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling AlipayCommerceEcUserEnterpriseApi->query: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
userId | string | 用户id | [optional] |
openId | string | 用户open_id | [optional] |
\Alipay\OpenAPISDK\Model\AlipayCommerceEcUserEnterpriseQueryResponseModel
No authorization required
- Content-Type: Not defined
- Accept:
application/json