GamebeastDocs
Dashboard
Project APIDeeplinks

Create a deeplink

POST
/application/{applicationId}/deeplinks/

Creates a new deeplink

Authorization

AuthorizationBearer <token>

Secret server key (prefixed gb_sk_) for server-to-server calls. Send it as Authorization: Bearer <key>. Never ship a secret key in a game client.

In: header

Path Parameters

applicationId*number

Gamebeast project ID

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

curl -X POST "https://example.com/application/0/deeplinks/" \  -H "Content-Type: application/json" \  -d '{    "name": "string",    "url": "http://example.com",    "type": "other"  }'
Empty