# Schema APIs — Async

**Base URL:** `/api/v1/schemas/push`

Provides asynchronous endpoints for creating, publishing, and importing schemas. All endpoints return `{ taskId, expectation }` with status 202 Accepted. Poll `GET /tasks/{taskId}` for the result.

**Authentication:** All endpoints require a valid JWT Bearer token (`Authorization: Bearer <token>`). Obtain a token via `POST /accounts/login`.

***

## Endpoints

| Method | Endpoint                                 | Description                                                                                      | Auth Required |
| ------ | ---------------------------------------- | ------------------------------------------------------------------------------------------------ | ------------- |
| POST   | `/schemas/push/{topicId}`                | Creates a new schema within the specified topic (async). Poll `GET /tasks/{taskId}` for result.  | Yes           |
| PUT    | `/schemas/push/{schemaId}/publish`       | Publishes a schema to IPFS (async). Poll `GET /tasks/{taskId}` for result.                       | Yes           |
| POST   | `/schemas/push/{topicId}/import/file`    | Imports a schema from a zip file (async). Poll `GET /tasks/{taskId}` for result.                 | Yes           |
| POST   | `/schemas/push/{topicId}/import/message` | Imports a schema from IPFS via Hedera message ID (async). Poll `GET /tasks/{taskId}` for result. | Yes           |
| POST   | `/schemas/push/import/message/preview`   | Previews a schema from IPFS without importing (async). Poll `GET /tasks/{taskId}` for result.    | Yes           |

***

## Endpoint Details

* [Creation of Schema](/docs/develop/schemas/schema-related-apis-for-asynchronous-execution/creation-of-schema.md) — `POST /schemas/push/{topicId}`
* [Publishing Schema](/docs/develop/schemas/schema-related-apis-for-asynchronous-execution/publishing-schema.md) — `PUT /schemas/push/{schemaId}/publish`
* [Importing Schema from .zip](/docs/develop/schemas/schema-related-apis-for-asynchronous-execution/importing-schema-from-.zip.md) — `POST /schemas/push/{topicId}/import/file`
* [Importing Schema from IPFS](/docs/develop/schemas/schema-related-apis-for-asynchronous-execution/importing-schema-from-ipfs.md) — `POST /schemas/push/{topicId}/import/message`
* [Previews the Schema from IPFS](/docs/develop/schemas/schema-related-apis-for-asynchronous-execution/previews-the-schema-from-ipfs.md) — `POST /schemas/push/import/message/preview`


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://guardian.hedera.com/docs/develop/schemas/schema-related-apis-for-asynchronous-execution.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
