This document describes how to use the Ad account management API.
Method | URL | Authorization |
---|---|---|
GET |
https://apis.moment.kakao.com/openapi/v4/companies |
Access token |
Permission | Prerequisite | Kakao Login | User consent |
---|---|---|---|
Required | Register platforms Activate Kakao Login Switch to a Biz app |
Required | - |
This API enables you to retrieve business information.
Send a GET
request with the issued access token and an ad account ID (adAccountId
) in the request header. You must also pass the business registration number of a company to be retrieved. If the request is successful, this API returns the detailed information of the requested company in JSON format. If failed, refer to Error code to figure out its failure cause.
Name | Description | Required |
---|---|---|
Authorization | Authorization: Bearer ${ACCESS_TOKEN} Access token as a type of user authentication. |
O |
adAccountId | adAccountId: ${AD_ACCOUNT_ID} Ad account's ID. |
O |
Name | Type | Description | Required |
---|---|---|---|
bizNum | String |
Business registration number. | O |
Name | Type | Description |
---|---|---|
id | Long |
Company's ID. |
businessRegistrationNumber | String |
Business registration number. |
name | String |
Company's name. |
representationName | String |
Company's representative. |
address | Address |
Company's address. |
businessCategory | String |
Type of business. |
businessItem | String |
Item of business. |
Name | Type | Description |
---|---|---|
baseAddress | String |
Base address. |
detailAddress | String |
Detailed address. |
zipCode | String |
Zip code. |
curl -X GET "https://apis.moment.kakao.com/openapi/v4/companies?bizNum=120-81-47521" \
-H "Authorization: Bearer ${ACCESS_TOKEN}" \
-H "adAccountId: ${AD_ACCOUNT_ID}"
{
"id": 680,
"businessRegistrationNumber": "123-12-12345",
"name": "company name",
"representationName": "company representative name",
"businessCategory": "business type",
"businessItem": "business item",
"address": {
"zipCode": "13494",
"baseAddress": "경기 성남시 분당구 판교역로 235",
"detailAddress": "H스퀘어"
}
}