ステータスエンドポイント

/statusエンドポイントを使用して、新規アプリのステータスを確認できます。このエンドポイントは、_Templateアプリの設定を新規アプリにコピーするプロセスのステータスを返します。

事前準備

このエンドポイントを使用するには、リクエストを認証する必要があります。認証ガイドの手順に従ってください。

エンドポイント

https://settings.adjust.com/api/status/{ticket_token}

GETリクエスト

このエンドポイントを使用して、設定されたコピープロセスのステータスを返します。/appエンドポイントを使用して、アプリを作成する際にticket_tokenを受け取ります。

パラメーター

名前データタイプ入力する値説明
ticket_token*文字列パス確認したいチケットのトークン。 /app エンドポイント はアプリを作成する際にこれを返します。

レスポンス

{
   "status": "String"
}

ステータス

cURL
curl \
--header "AdjustAuthorization: Token <adjust api token>" \
--header "SignatureAuthorization: Token <adjust signature token>" \
-X GET https://settings.adjust.com/api/status/<ticket_token>
{
    "status": "OPENED",
    "events": {
        "successes": [
            <list of tasks for specific section which were completed successfully>
        ],
        "failures": [
            <list of tasks which were failed>
        ],
    },
    # If a section migration failed before the migration process started,
    # the response contains information about the failure
    "partners": {
        "section": "partners",
        "detail": "Could not be start, because {events} sections has failed"
    }
}